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

Side by Side Diff: content/renderer/browser_plugin/browser_plugin_manager_impl.cc

Issue 15971005: Move the WebCursor sources from webkit/glue to webkit/common/cursors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/plugin/webplugin_delegate_stub.cc ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/browser_plugin/browser_plugin_manager_impl.h" 5 #include "content/renderer/browser_plugin/browser_plugin_manager_impl.h"
6 6
7 #include "content/common/browser_plugin/browser_plugin_constants.h" 7 #include "content/common/browser_plugin/browser_plugin_constants.h"
8 #include "content/common/browser_plugin/browser_plugin_messages.h" 8 #include "content/common/browser_plugin/browser_plugin_messages.h"
9 #include "content/renderer/browser_plugin/browser_plugin.h" 9 #include "content/renderer/browser_plugin/browser_plugin.h"
10 #include "content/renderer/render_thread_impl.h" 10 #include "content/renderer/render_thread_impl.h"
11 #include "ui/gfx/point.h" 11 #include "ui/gfx/point.h"
12 #include "webkit/glue/webcursor.h" 12 #include "webkit/common/cursors/webcursor.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 BrowserPluginManagerImpl::BrowserPluginManagerImpl( 16 BrowserPluginManagerImpl::BrowserPluginManagerImpl(
17 RenderViewImpl* render_view) 17 RenderViewImpl* render_view)
18 : BrowserPluginManager(render_view), 18 : BrowserPluginManager(render_view),
19 request_id_counter_(0) { 19 request_id_counter_(0) {
20 } 20 }
21 21
22 BrowserPluginManagerImpl::~BrowserPluginManagerImpl() { 22 BrowserPluginManagerImpl::~BrowserPluginManagerImpl() {
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 Send(new BrowserPluginHostMsg_BuffersSwappedACK( 120 Send(new BrowserPluginHostMsg_BuffersSwappedACK(
121 message.routing_id(), 121 message.routing_id(),
122 instance_id, 122 instance_id,
123 gpu_route_id, 123 gpu_route_id,
124 gpu_host_id, 124 gpu_host_id,
125 mailbox_name, 125 mailbox_name,
126 0)); 126 0));
127 } 127 }
128 128
129 } // namespace content 129 } // namespace content
OLDNEW
« no previous file with comments | « content/plugin/webplugin_delegate_stub.cc ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698