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

Unified Diff: content/public/test/browser_test_utils.h

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 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
« no previous file with comments | « content/public/renderer/render_thread.h ('k') | content/public/test/browser_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/browser_test_utils.h
diff --git a/content/public/test/browser_test_utils.h b/content/public/test/browser_test_utils.h
index 3c1f72541639fe73216753ef12eff1b816673eeb..036a7a807bd5291db0d4b6862bffb1420d822461 100644
--- a/content/public/test/browser_test_utils.h
+++ b/content/public/test/browser_test_utils.h
@@ -552,16 +552,21 @@ class InputMsgWatcher : public BrowserMessageFilter {
// the message.
uint32_t WaitForAck();
+ uint32_t last_event_ack_source() const { return ack_source_; }
+
private:
~InputMsgWatcher() override;
// Overridden BrowserMessageFilter methods.
bool OnMessageReceived(const IPC::Message& message) override;
- void ReceivedAck(blink::WebInputEvent::Type ack_type, uint32_t ack_state);
+ void ReceivedAck(blink::WebInputEvent::Type ack_type,
+ uint32_t ack_state,
+ uint32_t ack_source);
blink::WebInputEvent::Type wait_for_type_;
uint32_t ack_result_;
+ uint32_t ack_source_;
base::Closure quit_;
DISALLOW_COPY_AND_ASSIGN(InputMsgWatcher);
« no previous file with comments | « content/public/renderer/render_thread.h ('k') | content/public/test/browser_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698