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

Unified Diff: ui/events/blink/event_with_callback.h

Issue 2683043004: Remove ui/events/blink dependency on blink_minimal. (Closed)
Patch Set: fix win debug Created 3 years, 10 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: ui/events/blink/event_with_callback.h
diff --git a/ui/events/blink/event_with_callback.h b/ui/events/blink/event_with_callback.h
index 7910c7f07dd2b7ec60d4d9fa9330829143067c67..d222ffaec2485cc0384ff2567271f6aab9fcc615 100644
--- a/ui/events/blink/event_with_callback.h
+++ b/ui/events/blink/event_with_callback.h
@@ -20,20 +20,20 @@ class EventWithCallback {
public:
struct OriginalEventWithCallback {
OriginalEventWithCallback(
- blink::WebScopedInputEvent event,
+ WebScopedInputEvent event,
const InputHandlerProxy::EventDispositionCallback& callback);
~OriginalEventWithCallback();
- blink::WebScopedInputEvent event_;
+ WebScopedInputEvent event_;
InputHandlerProxy::EventDispositionCallback callback_;
};
using OriginalEventList = std::list<OriginalEventWithCallback>;
EventWithCallback(
- blink::WebScopedInputEvent event,
+ WebScopedInputEvent event,
const LatencyInfo& latency,
base::TimeTicks timestamp_now,
const InputHandlerProxy::EventDispositionCallback& callback);
- EventWithCallback(blink::WebScopedInputEvent event,
+ EventWithCallback(WebScopedInputEvent event,
const LatencyInfo& latency,
base::TimeTicks creation_timestamp,
base::TimeTicks last_coalesced_timestamp,
@@ -61,7 +61,7 @@ class EventWithCallback {
void SetTickClockForTesting(std::unique_ptr<base::TickClock> tick_clock);
- blink::WebScopedInputEvent event_;
+ WebScopedInputEvent event_;
LatencyInfo latency_;
OriginalEventList original_events_;

Powered by Google App Engine
This is Rietveld 408576698