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

Side by Side Diff: content/public/browser/render_widget_host.h

Issue 2581943003: Move WebMouseWheelEvent into its own header file. (Closed)
Patch Set: Fix mac unittest Created 4 years 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_
6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ 6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 10 matching lines...) Expand all
21 #include "third_party/skia/include/core/SkImageInfo.h" 21 #include "third_party/skia/include/core/SkImageInfo.h"
22 #include "ui/gfx/geometry/size.h" 22 #include "ui/gfx/geometry/size.h"
23 #include "ui/surface/transport_dib.h" 23 #include "ui/surface/transport_dib.h"
24 24
25 namespace gfx { 25 namespace gfx {
26 class Rect; 26 class Rect;
27 } 27 }
28 28
29 namespace blink { 29 namespace blink {
30 class WebMouseEvent; 30 class WebMouseEvent;
31 class WebMouseWheelEvent;
31 } 32 }
32 33
33 namespace content { 34 namespace content {
34 35
35 class RenderProcessHost; 36 class RenderProcessHost;
36 class RenderWidgetHostIterator; 37 class RenderWidgetHostIterator;
37 class RenderWidgetHostView; 38 class RenderWidgetHostView;
38 struct ScreenInfo; 39 struct ScreenInfo;
39 40
40 // A RenderWidgetHost manages the browser side of a browser<->renderer 41 // A RenderWidgetHost manages the browser side of a browser<->renderer
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 // This allows the renderer to reset some state. 296 // This allows the renderer to reset some state.
296 virtual void DragSourceSystemDragEnded() {}; 297 virtual void DragSourceSystemDragEnded() {};
297 298
298 // Filters drop data before it is passed to RenderWidgetHost. 299 // Filters drop data before it is passed to RenderWidgetHost.
299 virtual void FilterDropData(DropData* drop_data) {} 300 virtual void FilterDropData(DropData* drop_data) {}
300 }; 301 };
301 302
302 } // namespace content 303 } // namespace content
303 304
304 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_ 305 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_H_
OLDNEW
« no previous file with comments | « content/common/input/synthetic_web_input_event_builders.h ('k') | content/renderer/browser_plugin/browser_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698