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

Side by Side Diff: ui/events/blink/scoped_web_input_event.cc

Issue 2576013002: Introducing WebCoalescedInputEvent and inclusion in content/common (Closed)
Patch Set: Fix a few DCHECK hits Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/events/blink/scoped_web_input_event.h"
6
7 #include "third_party/WebKit/public/platform/WebInputEvent.h"
8 #include "ui/events/blink/web_input_event_traits.h"
9
10 using blink::WebInputEvent;
11
12 namespace ui {
13
14 WebInputEventDeleter::WebInputEventDeleter() {}
15
16 void WebInputEventDeleter::operator()(WebInputEvent* web_event) const {
17 WebInputEventTraits::Delete(web_event);
18 }
19
20 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698