| 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 UpdateImeAdapter(long native_ime_adapter, | 329 void UpdateImeAdapter(long native_ime_adapter, |
| 330 int text_input_type, | 330 int text_input_type, |
| 331 int text_input_flags, | 331 int text_input_flags, |
| 332 const std::string& text, | 332 const std::string& text, |
| 333 int selection_start, | 333 int selection_start, |
| 334 int selection_end, | 334 int selection_end, |
| 335 int composition_start, | 335 int composition_start, |
| 336 int composition_end, | 336 int composition_end, |
| 337 bool show_ime_if_needed, | 337 bool show_ime_if_needed, |
| 338 bool is_non_ime_change); | 338 bool is_non_ime_change); |
| 339 void SetTitle(const base::string16& title); | |
| 340 void OnBackgroundColorChanged(SkColor color); | 339 void OnBackgroundColorChanged(SkColor color); |
| 341 | 340 |
| 342 bool HasFocus(); | 341 bool HasFocus(); |
| 343 void RequestDisallowInterceptTouchEvent(); | 342 void RequestDisallowInterceptTouchEvent(); |
| 344 void OnGestureEventAck(const blink::WebGestureEvent& event, | 343 void OnGestureEventAck(const blink::WebGestureEvent& event, |
| 345 InputEventAckState ack_result); | 344 InputEventAckState ack_result); |
| 346 bool FilterInputEvent(const blink::WebInputEvent& event); | 345 bool FilterInputEvent(const blink::WebInputEvent& event); |
| 347 void OnSelectionChanged(const std::string& text); | 346 void OnSelectionChanged(const std::string& text); |
| 348 void OnSelectionEvent(ui::SelectionEventType event, | 347 void OnSelectionEvent(ui::SelectionEventType event, |
| 349 const gfx::PointF& selection_anchor, | 348 const gfx::PointF& selection_anchor, |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; | 469 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; |
| 471 | 470 |
| 472 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); | 471 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); |
| 473 }; | 472 }; |
| 474 | 473 |
| 475 bool RegisterContentViewCore(JNIEnv* env); | 474 bool RegisterContentViewCore(JNIEnv* env); |
| 476 | 475 |
| 477 } // namespace content | 476 } // namespace content |
| 478 | 477 |
| 479 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ | 478 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ |
| OLD | NEW |