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

Unified Diff: components/test_runner/web_test_delegate.h

Issue 2333813002: Introduce WebInputMethodController to blink (Closed)
Patch Set: Explicitly asking for TextInputState updates Created 4 years, 1 month 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: components/test_runner/web_test_delegate.h
diff --git a/components/test_runner/web_test_delegate.h b/components/test_runner/web_test_delegate.h
index c309bd2d5f4a38c99e15227363c6005817bd5688..15bebfc81ac3ad88c4f0ba79e9ae775cae490bdf 100644
--- a/components/test_runner/web_test_delegate.h
+++ b/components/test_runner/web_test_delegate.h
@@ -26,7 +26,7 @@ class DictionaryValue;
namespace blink {
class WebDeviceMotionData;
class WebDeviceOrientationData;
-class WebLocalFrame;
+class WebFrame;
class WebGamepad;
class WebGamepads;
class WebHistoryItem;
@@ -298,6 +298,10 @@ class WebTestDelegate {
// Run all pending idle tasks, and then run callback.
virtual void RunIdleTasks(const base::Closure& callback) = 0;
+
+ // Forces a text input state update for the client of WebFrameWidget
+ // associated with |frame|.
+ virtual void ForceTextInputStateUpdate(blink::WebFrame* frame) = 0;
};
} // namespace test_runner

Powered by Google App Engine
This is Rietveld 408576698