| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 void UpdateImeAdapter(long native_ime_adapter, | 327 void UpdateImeAdapter(long native_ime_adapter, |
| 328 int text_input_type, | 328 int text_input_type, |
| 329 int text_input_flags, | 329 int text_input_flags, |
| 330 int text_input_mode, | 330 int text_input_mode, |
| 331 const std::string& text, | 331 const std::string& text, |
| 332 int selection_start, | 332 int selection_start, |
| 333 int selection_end, | 333 int selection_end, |
| 334 int composition_start, | 334 int composition_start, |
| 335 int composition_end, | 335 int composition_end, |
| 336 bool show_ime_if_needed, | 336 bool show_ime_if_needed, |
| 337 bool is_non_ime_change); | 337 bool reply_to_request); |
| 338 void OnBackgroundColorChanged(SkColor color); | 338 void OnBackgroundColorChanged(SkColor color); |
| 339 | 339 |
| 340 bool HasFocus(); | 340 bool HasFocus(); |
| 341 void RequestDisallowInterceptTouchEvent(); | 341 void RequestDisallowInterceptTouchEvent(); |
| 342 void OnGestureEventAck(const blink::WebGestureEvent& event, | 342 void OnGestureEventAck(const blink::WebGestureEvent& event, |
| 343 InputEventAckState ack_result); | 343 InputEventAckState ack_result); |
| 344 bool FilterInputEvent(const blink::WebInputEvent& event); | 344 bool FilterInputEvent(const blink::WebInputEvent& event); |
| 345 void OnSelectionChanged(const std::string& text); | 345 void OnSelectionChanged(const std::string& text); |
| 346 void OnSelectionEvent(ui::SelectionEventType event, | 346 void OnSelectionEvent(ui::SelectionEventType event, |
| 347 const gfx::PointF& selection_anchor, | 347 const gfx::PointF& selection_anchor, |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; | 462 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; |
| 463 | 463 |
| 464 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 464 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
| 465 }; | 465 }; |
| 466 | 466 |
| 467 bool RegisterContentViewCore(JNIEnv* env); | 467 bool RegisterContentViewCore(JNIEnv* env); |
| 468 | 468 |
| 469 } // namespace content | 469 } // namespace content |
| 470 | 470 |
| 471 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 471 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
| OLD | NEW |