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

Side by Side Diff: content/renderer/pepper/pepper_plugin_delegate_impl.cc

Issue 11941022: Refactor FileIO to the new resource host system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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/renderer/pepper/pepper_in_process_resource_creation.cc ('k') | ppapi/ppapi_proxy.gypi » ('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/pepper/pepper_plugin_delegate_impl.h" 5 #include "content/renderer/pepper/pepper_plugin_delegate_impl.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 #include <cstddef> 8 #include <cstddef>
9 #include <map> 9 #include <map>
10 #include <queue> 10 #include <queue>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 78 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
79 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" 79 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h"
80 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" 80 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h"
81 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 81 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
82 #include "ui/gfx/size.h" 82 #include "ui/gfx/size.h"
83 #include "webkit/fileapi/file_system_callback_dispatcher.h" 83 #include "webkit/fileapi/file_system_callback_dispatcher.h"
84 #include "webkit/plugins/npapi/webplugin.h" 84 #include "webkit/plugins/npapi/webplugin.h"
85 #include "webkit/plugins/ppapi/plugin_module.h" 85 #include "webkit/plugins/ppapi/plugin_module.h"
86 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" 86 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h"
87 #include "webkit/plugins/ppapi/ppapi_webplugin_impl.h" 87 #include "webkit/plugins/ppapi/ppapi_webplugin_impl.h"
88 #include "webkit/plugins/ppapi/ppb_file_io_impl.h"
89 #include "webkit/plugins/ppapi/ppb_tcp_server_socket_private_impl.h" 88 #include "webkit/plugins/ppapi/ppb_tcp_server_socket_private_impl.h"
90 #include "webkit/plugins/ppapi/ppb_tcp_socket_private_impl.h" 89 #include "webkit/plugins/ppapi/ppb_tcp_socket_private_impl.h"
91 #include "webkit/plugins/ppapi/ppb_udp_socket_private_impl.h" 90 #include "webkit/plugins/ppapi/ppb_udp_socket_private_impl.h"
92 #include "webkit/plugins/ppapi/resource_helper.h" 91 #include "webkit/plugins/ppapi/resource_helper.h"
93 #include "webkit/plugins/webplugininfo.h" 92 #include "webkit/plugins/webplugininfo.h"
94 93
95 using WebKit::WebView; 94 using WebKit::WebView;
96 using WebKit::WebFrame; 95 using WebKit::WebFrame;
97 96
98 namespace content { 97 namespace content {
(...skipping 1634 matching lines...) Expand 10 before | Expand all | Expand 10 after
1733 RenderWidgetFullscreenPepper* container = 1732 RenderWidgetFullscreenPepper* container =
1734 static_cast<RenderWidgetFullscreenPepper*>( 1733 static_cast<RenderWidgetFullscreenPepper*>(
1735 instance->fullscreen_container()); 1734 instance->fullscreen_container());
1736 return container->mouse_lock_dispatcher(); 1735 return container->mouse_lock_dispatcher();
1737 } else { 1736 } else {
1738 return render_view_->mouse_lock_dispatcher(); 1737 return render_view_->mouse_lock_dispatcher();
1739 } 1738 }
1740 } 1739 }
1741 1740
1742 } // namespace content 1741 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_in_process_resource_creation.cc ('k') | ppapi/ppapi_proxy.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698