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

Side by Side Diff: chrome/renderer/webplugin_delegate_proxy.cc

Issue 1132006: Move app/gfx/canvas and app/gfx/font to gfx/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 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 | « chrome/plugin/webplugin_proxy.cc ('k') | gfx/canvas.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "chrome/renderer/webplugin_delegate_proxy.h" 5 #include "chrome/renderer/webplugin_delegate_proxy.h"
6 6
7 #if defined(TOOLKIT_USES_GTK) 7 #if defined(TOOLKIT_USES_GTK)
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #endif 9 #endif
10 10
11 #include <algorithm> 11 #include <algorithm>
12 12
13 #include "app/gfx/canvas.h"
14 #include "app/l10n_util.h" 13 #include "app/l10n_util.h"
15 #include "app/resource_bundle.h" 14 #include "app/resource_bundle.h"
16 #include "base/basictypes.h" 15 #include "base/basictypes.h"
17 #include "base/file_util.h" 16 #include "base/file_util.h"
18 #include "base/logging.h" 17 #include "base/logging.h"
19 #include "base/ref_counted.h" 18 #include "base/ref_counted.h"
20 #include "base/string_util.h" 19 #include "base/string_util.h"
21 #include "chrome/common/child_process_logging.h" 20 #include "chrome/common/child_process_logging.h"
22 #include "chrome/common/plugin_messages.h" 21 #include "chrome/common/plugin_messages.h"
23 #include "chrome/common/render_messages.h" 22 #include "chrome/common/render_messages.h"
24 #include "chrome/plugin/npobject_proxy.h" 23 #include "chrome/plugin/npobject_proxy.h"
25 #include "chrome/plugin/npobject_stub.h" 24 #include "chrome/plugin/npobject_stub.h"
26 #include "chrome/plugin/npobject_util.h" 25 #include "chrome/plugin/npobject_util.h"
27 #include "chrome/renderer/command_buffer_proxy.h" 26 #include "chrome/renderer/command_buffer_proxy.h"
28 #include "chrome/renderer/render_thread.h" 27 #include "chrome/renderer/render_thread.h"
29 #include "chrome/renderer/render_view.h" 28 #include "chrome/renderer/render_view.h"
30 #include "gfx/blit.h" 29 #include "gfx/blit.h"
30 #include "gfx/canvas.h"
31 #include "gfx/native_widget_types.h" 31 #include "gfx/native_widget_types.h"
32 #include "gfx/size.h" 32 #include "gfx/size.h"
33 #include "grit/generated_resources.h" 33 #include "grit/generated_resources.h"
34 #include "grit/renderer_resources.h" 34 #include "grit/renderer_resources.h"
35 #include "net/base/mime_util.h" 35 #include "net/base/mime_util.h"
36 #include "printing/native_metafile.h" 36 #include "printing/native_metafile.h"
37 #include "third_party/WebKit/WebKit/chromium/public/WebBindings.h" 37 #include "third_party/WebKit/WebKit/chromium/public/WebBindings.h"
38 #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h" 38 #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h"
39 #include "third_party/WebKit/WebKit/chromium/public/WebDragData.h" 39 #include "third_party/WebKit/WebKit/chromium/public/WebDragData.h"
40 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" 40 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
(...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 if (render_view_) 1406 if (render_view_)
1407 render_view_->AcceleratedSurfaceFreeTransportDIB(dib_id); 1407 render_view_->AcceleratedSurfaceFreeTransportDIB(dib_id);
1408 } 1408 }
1409 1409
1410 void WebPluginDelegateProxy::OnAcceleratedSurfaceBuffersSwapped( 1410 void WebPluginDelegateProxy::OnAcceleratedSurfaceBuffersSwapped(
1411 gfx::PluginWindowHandle window) { 1411 gfx::PluginWindowHandle window) {
1412 if (render_view_) 1412 if (render_view_)
1413 render_view_->AcceleratedSurfaceBuffersSwapped(window); 1413 render_view_->AcceleratedSurfaceBuffersSwapped(window);
1414 } 1414 }
1415 #endif 1415 #endif
OLDNEW
« no previous file with comments | « chrome/plugin/webplugin_proxy.cc ('k') | gfx/canvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698