| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
| 6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 void ForceUpdateImeAdapter(long native_ime_adapter); | 329 void ForceUpdateImeAdapter(long native_ime_adapter); |
| 330 void UpdateImeAdapter(long native_ime_adapter, | 330 void UpdateImeAdapter(long native_ime_adapter, |
| 331 int text_input_type, | 331 int text_input_type, |
| 332 int text_input_flags, | 332 int text_input_flags, |
| 333 const std::string& text, | 333 const std::string& text, |
| 334 int selection_start, | 334 int selection_start, |
| 335 int selection_end, | 335 int selection_end, |
| 336 int composition_start, | 336 int composition_start, |
| 337 int composition_end, | 337 int composition_end, |
| 338 bool show_ime_if_needed, | 338 bool show_ime_if_needed, |
| 339 bool is_non_ime_change); | 339 bool is_non_ime_change, |
| 340 bool in_batch_edit_mode); |
| 340 void SetTitle(const base::string16& title); | 341 void SetTitle(const base::string16& title); |
| 341 void OnBackgroundColorChanged(SkColor color); | 342 void OnBackgroundColorChanged(SkColor color); |
| 342 | 343 |
| 343 bool HasFocus(); | 344 bool HasFocus(); |
| 344 void RequestDisallowInterceptTouchEvent(); | 345 void RequestDisallowInterceptTouchEvent(); |
| 345 void OnGestureEventAck(const blink::WebGestureEvent& event, | 346 void OnGestureEventAck(const blink::WebGestureEvent& event, |
| 346 InputEventAckState ack_result); | 347 InputEventAckState ack_result); |
| 347 bool FilterInputEvent(const blink::WebInputEvent& event); | 348 bool FilterInputEvent(const blink::WebInputEvent& event); |
| 348 void OnSelectionChanged(const std::string& text); | 349 void OnSelectionChanged(const std::string& text); |
| 349 void OnSelectionEvent(ui::SelectionEventType event, | 350 void OnSelectionEvent(ui::SelectionEventType event, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; | 476 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; |
| 476 | 477 |
| 477 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 478 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
| 478 }; | 479 }; |
| 479 | 480 |
| 480 bool RegisterContentViewCore(JNIEnv* env); | 481 bool RegisterContentViewCore(JNIEnv* env); |
| 481 | 482 |
| 482 } // namespace content | 483 } // namespace content |
| 483 | 484 |
| 484 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 485 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
| OLD | NEW |