Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: content/browser/accessibility/browser_accessibility_android.cc

Issue 17390010: Use a direct include of strings headers, delete some strings forwarding headers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: one less deleted file Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/accessibility/browser_accessibility_android.h" 5 #include "content/browser/accessibility/browser_accessibility_android.h"
6 6
7 #include "base/android/jni_android.h" 7 #include "base/android/jni_android.h"
8 #include "base/android/jni_registrar.h" 8 #include "base/android/jni_registrar.h"
9 #include "base/android/jni_string.h" 9 #include "base/android/jni_string.h"
10 #include "base/android/scoped_java_ref.h" 10 #include "base/android/scoped_java_ref.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
12 #include "content/browser/accessibility/browser_accessibility_manager_android.h" 12 #include "content/browser/accessibility/browser_accessibility_manager_android.h"
13 #include "content/common/accessibility_messages.h" 13 #include "content/common/accessibility_messages.h"
14 #include "content/common/accessibility_node_data.h" 14 #include "content/common/accessibility_node_data.h"
15 15
16 using base::android::ScopedJavaLocalRef; 16 using base::android::ScopedJavaLocalRef;
17 17
18 namespace content { 18 namespace content {
19 19
20 // static 20 // static
21 BrowserAccessibility* BrowserAccessibility::Create() { 21 BrowserAccessibility* BrowserAccessibility::Create() {
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 cached_text_ = text; 525 cached_text_ = text;
526 } 526 }
527 } 527 }
528 528
529 bool RegisterBrowserAccessibility(JNIEnv* env) { 529 bool RegisterBrowserAccessibility(JNIEnv* env) {
530 // TODO(aboxhall): replace with non-stub implementation 530 // TODO(aboxhall): replace with non-stub implementation
531 return false; 531 return false;
532 } 532 }
533 533
534 } // namespace content 534 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698