Index: content/browser/renderer_host/render_widget_host_view_android.h |
diff --git a/content/browser/renderer_host/render_widget_host_view_android.h b/content/browser/renderer_host/render_widget_host_view_android.h |
index ce4e2635d84d0338cd84f34f0532f016da454511..93f35e84e2450cb017a803e644a2d469b7de88dc 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_android.h |
+++ b/content/browser/renderer_host/render_widget_host_view_android.h |
@@ -225,7 +225,7 @@ class RenderWidgetHostViewAndroid |
void SynchronousFrameMetadata( |
const cc::CompositorFrameMetadata& frame_metadata); |
- private: |
+private: |
kochi
2013/07/08 04:28:43
nit: not necessary to remove a space.
nyquist
2013/07/09 07:47:36
Done.
|
void BuffersSwapped(const gpu::Mailbox& mailbox, |
const base::Closure& ack_callback); |
@@ -247,6 +247,9 @@ class RenderWidgetHostViewAndroid |
void UpdateAnimationSize(const cc::CompositorFrameMetadata& frame_metadata); |
void ScheduleAnimationIfNecessary(); |
+ // Returns whether strict IME processing has been enabled. |
+ bool has_strict_ime_processing() { return strict_ime_processing_; } |
kochi
2013/07/08 04:28:43
Usually we use the same name for a simple accessor
nyquist
2013/07/09 07:47:36
Done.
|
+ |
// The model object. |
RenderWidgetHostImpl* host_; |
@@ -264,6 +267,9 @@ class RenderWidgetHostViewAndroid |
ImeAdapterAndroid ime_adapter_android_; |
+ // Specifies if the strict IME processing has been enabled. |
+ bool strict_ime_processing_; |
+ |
// Body background color of the underlying document. |
SkColor cached_background_color_; |