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

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

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: Creating CoalescedWebInputEvent 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: ui/events/blink/scoped_web_input_event.h
diff --git a/ui/events/blink/scoped_web_input_event.h b/ui/events/blink/scoped_web_input_event.h
deleted file mode 100644
index c7e686f8d23194957bddb113076fba1ab0f21ce2..0000000000000000000000000000000000000000
--- a/ui/events/blink/scoped_web_input_event.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_EVENTS_BLINK_SCOPED_WEB_INPUT_EVENT_H_
-#define UI_EVENTS_BLINK_SCOPED_WEB_INPUT_EVENT_H_
-
-#include <memory>
-
-namespace blink {
-class WebInputEvent;
-}
-
-namespace ui {
-
-// blink::WebInputEvent does not provide a virtual destructor.
-struct WebInputEventDeleter {
- WebInputEventDeleter();
- void operator()(blink::WebInputEvent* web_event) const;
-};
-typedef std::unique_ptr<blink::WebInputEvent, WebInputEventDeleter>
- ScopedWebInputEvent;
-
-} // namespace ui
-
-#endif // UI_EVENTS_BLINK_SCOPED_WEB_INPUT_EVENT_H_

Powered by Google App Engine
This is Rietveld 408576698