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

Side by Side Diff: content/renderer/render_widget_fullscreen_pepper.cc

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 #include "content/renderer/render_widget_fullscreen_pepper.h" 5 #include "content/renderer/render_widget_fullscreen_pepper.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/message_loop/message_loop.h" 12 #include "base/message_loop/message_loop.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "content/common/view_messages.h" 14 #include "content/common/view_messages.h"
15 #include "content/public/common/content_switches.h" 15 #include "content/public/common/content_switches.h"
16 #include "content/renderer/gpu/render_widget_compositor.h" 16 #include "content/renderer/gpu/render_widget_compositor.h"
17 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" 17 #include "content/renderer/pepper/pepper_plugin_instance_impl.h"
18 #include "content/renderer/render_thread_impl.h" 18 #include "content/renderer/render_thread_impl.h"
19 #include "gpu/ipc/client/gpu_channel_host.h" 19 #include "gpu/ipc/client/gpu_channel_host.h"
20 #include "skia/ext/platform_canvas.h" 20 #include "skia/ext/platform_canvas.h"
21 #include "third_party/WebKit/public/platform/WebCanvas.h" 21 #include "third_party/WebKit/public/platform/WebCanvas.h"
22 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 22 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
23 #include "third_party/WebKit/public/platform/WebGestureEvent.h" 23 #include "third_party/WebKit/public/platform/WebGestureEvent.h"
24 #include "third_party/WebKit/public/platform/WebLayer.h" 24 #include "third_party/WebKit/public/platform/WebLayer.h"
25 #include "third_party/WebKit/public/platform/WebMouseWheelEvent.h"
25 #include "third_party/WebKit/public/platform/WebSize.h" 26 #include "third_party/WebKit/public/platform/WebSize.h"
26 #include "third_party/WebKit/public/web/WebWidget.h" 27 #include "third_party/WebKit/public/web/WebWidget.h"
27 #include "ui/gfx/geometry/size_conversions.h" 28 #include "ui/gfx/geometry/size_conversions.h"
28 #include "ui/gl/gpu_preference.h" 29 #include "ui/gl/gpu_preference.h"
29 30
30 using blink::WebCanvas; 31 using blink::WebCanvas;
31 using blink::WebCompositionUnderline; 32 using blink::WebCompositionUnderline;
32 using blink::WebCursorInfo; 33 using blink::WebCursorInfo;
33 using blink::WebGestureEvent; 34 using blink::WebGestureEvent;
34 using blink::WebInputEvent; 35 using blink::WebInputEvent;
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 GURL RenderWidgetFullscreenPepper::GetURLForGraphicsContext3D() { 378 GURL RenderWidgetFullscreenPepper::GetURLForGraphicsContext3D() {
378 return active_url_; 379 return active_url_;
379 } 380 }
380 381
381 void RenderWidgetFullscreenPepper::OnDeviceScaleFactorChanged() { 382 void RenderWidgetFullscreenPepper::OnDeviceScaleFactorChanged() {
382 if (compositor_) 383 if (compositor_)
383 compositor_->setDeviceScaleFactor(device_scale_factor_); 384 compositor_->setDeviceScaleFactor(device_scale_factor_);
384 } 385 }
385 386
386 } // namespace content 387 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/event_conversion.cc ('k') | third_party/WebKit/Source/web/AssertMatchingEnums.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698