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

Side by Side Diff: content/plugin/webplugin_proxy.cc

Issue 1138753003: Remove unused blitting functions from ui/gfx/blit.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | content/renderer/sad_plugin.cc » ('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/plugin/webplugin_proxy.h" 5 #include "content/plugin/webplugin_proxy.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
11 #include "base/memory/shared_memory.h" 11 #include "base/memory/shared_memory.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 #include "content/child/npapi/npobject_proxy.h" 13 #include "content/child/npapi/npobject_proxy.h"
14 #include "content/child/npapi/npobject_util.h" 14 #include "content/child/npapi/npobject_util.h"
15 #include "content/child/npapi/webplugin_delegate_impl.h" 15 #include "content/child/npapi/webplugin_delegate_impl.h"
16 #include "content/child/npapi/webplugin_resource_client.h" 16 #include "content/child/npapi/webplugin_resource_client.h"
17 #include "content/child/plugin_messages.h" 17 #include "content/child/plugin_messages.h"
18 #include "content/plugin/plugin_channel.h" 18 #include "content/plugin/plugin_channel.h"
19 #include "content/plugin/plugin_thread.h" 19 #include "content/plugin/plugin_thread.h"
20 #include "content/public/common/content_client.h" 20 #include "content/public/common/content_client.h"
21 #include "skia/ext/platform_canvas.h" 21 #include "skia/ext/platform_canvas.h"
22 #include "skia/ext/platform_device.h" 22 #include "skia/ext/platform_device.h"
23 #include "third_party/WebKit/public/web/WebBindings.h" 23 #include "third_party/WebKit/public/web/WebBindings.h"
24 #include "ui/gfx/blit.h"
25 #include "ui/gfx/canvas.h" 24 #include "ui/gfx/canvas.h"
26 #include "url/url_constants.h" 25 #include "url/url_constants.h"
27 26
28 #if defined(OS_MACOSX) 27 #if defined(OS_MACOSX)
29 #include "base/mac/mac_util.h" 28 #include "base/mac/mac_util.h"
30 #include "base/mac/scoped_cftyperef.h" 29 #include "base/mac/scoped_cftyperef.h"
31 #include "content/plugin/webplugin_accelerated_surface_proxy_mac.h" 30 #include "content/plugin/webplugin_accelerated_surface_proxy_mac.h"
32 #endif 31 #endif
33 32
34 #if defined(OS_WIN) 33 #if defined(OS_WIN)
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 int input_type; 609 int input_type;
611 gfx::Rect caret_rect; 610 gfx::Rect caret_rect;
612 if (!delegate_->GetIMEStatus(&input_type, &caret_rect)) 611 if (!delegate_->GetIMEStatus(&input_type, &caret_rect))
613 return; 612 return;
614 613
615 Send(new PluginHostMsg_NotifyIMEStatus(route_id_, input_type, caret_rect)); 614 Send(new PluginHostMsg_NotifyIMEStatus(route_id_, input_type, caret_rect));
616 } 615 }
617 #endif 616 #endif
618 617
619 } // namespace content 618 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/renderer/sad_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698