OLD | NEW |
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 Loading... |
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 |
OLD | NEW |