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

Side by Side Diff: content/common/input/scoped_web_input_event.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/input/scoped_web_input_event.h" 5 #include "content/common/input/scoped_web_input_event.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/common/input/web_input_event_traits.h" 8 #include "content/common/input/web_input_event_traits.h"
9 #include "third_party/WebKit/public/web/WebInputEvent.h" 9 #include "third_party/WebKit/public/web/WebInputEvent.h"
10 10
11 using WebKit::WebGestureEvent; 11 using blink::WebGestureEvent;
12 using WebKit::WebInputEvent; 12 using blink::WebInputEvent;
13 using WebKit::WebKeyboardEvent; 13 using blink::WebKeyboardEvent;
14 using WebKit::WebMouseEvent; 14 using blink::WebMouseEvent;
15 using WebKit::WebMouseWheelEvent; 15 using blink::WebMouseWheelEvent;
16 using WebKit::WebTouchEvent; 16 using blink::WebTouchEvent;
17 17
18 namespace content { 18 namespace content {
19 19
20 WebInputEventDeleter::WebInputEventDeleter() {} 20 WebInputEventDeleter::WebInputEventDeleter() {}
21 21
22 void WebInputEventDeleter::operator()(WebInputEvent* web_event) const { 22 void WebInputEventDeleter::operator()(WebInputEvent* web_event) const {
23 WebInputEventTraits::Delete(web_event); 23 WebInputEventTraits::Delete(web_event);
24 } 24 }
25 25
26 } // namespace content 26 } // namespace content
OLDNEW
« no previous file with comments | « content/common/input/scoped_web_input_event.h ('k') | content/common/input/web_input_event_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698