Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: content/browser/renderer_host/render_widget_host_view_android.h

Issue 18750003: Require ACK for editor-related changes not originating from browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698