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

Side by Side Diff: content/renderer/pepper_plugin_delegate_impl.h

Issue 7618039: PPB_URLRequestInfo::AppendFileToBody using sync ipc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 4 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/common/file_system_messages.h ('k') | content/renderer/pepper_plugin_delegate_impl.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <map> 10 #include <map>
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 const webkit::ppapi::PepperFilePath& path, 244 const webkit::ppapi::PepperFilePath& path,
245 bool recursive) OVERRIDE; 245 bool recursive) OVERRIDE;
246 virtual base::PlatformFileError CreateDir( 246 virtual base::PlatformFileError CreateDir(
247 const webkit::ppapi::PepperFilePath& path) OVERRIDE; 247 const webkit::ppapi::PepperFilePath& path) OVERRIDE;
248 virtual base::PlatformFileError QueryFile( 248 virtual base::PlatformFileError QueryFile(
249 const webkit::ppapi::PepperFilePath& path, 249 const webkit::ppapi::PepperFilePath& path,
250 base::PlatformFileInfo* info) OVERRIDE; 250 base::PlatformFileInfo* info) OVERRIDE;
251 virtual base::PlatformFileError GetDirContents( 251 virtual base::PlatformFileError GetDirContents(
252 const webkit::ppapi::PepperFilePath& path, 252 const webkit::ppapi::PepperFilePath& path,
253 webkit::ppapi::DirContents* contents) OVERRIDE; 253 webkit::ppapi::DirContents* contents) OVERRIDE;
254 virtual void SyncGetFileSystemPlatformPath(
255 const GURL& url,
256 FilePath* platform_path) OVERRIDE;
254 virtual scoped_refptr<base::MessageLoopProxy> 257 virtual scoped_refptr<base::MessageLoopProxy>
255 GetFileThreadMessageLoopProxy() OVERRIDE; 258 GetFileThreadMessageLoopProxy() OVERRIDE;
256 virtual int32_t ConnectTcp( 259 virtual int32_t ConnectTcp(
257 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector, 260 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector,
258 const char* host, 261 const char* host,
259 uint16_t port) OVERRIDE; 262 uint16_t port) OVERRIDE;
260 virtual int32_t ConnectTcpAddress( 263 virtual int32_t ConnectTcpAddress(
261 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector, 264 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector,
262 const struct PP_Flash_NetAddress* addr) OVERRIDE; 265 const struct PP_Flash_NetAddress* addr) OVERRIDE;
263 // This is the completion for both |ConnectTcp()| and |ConnectTcpAddress()|. 266 // This is the completion for both |ConnectTcp()| and |ConnectTcpAddress()|.
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 bool is_pepper_plugin_focused_; 340 bool is_pepper_plugin_focused_;
338 341
339 // Set of instances to receive a notification when the enterprise policy has 342 // Set of instances to receive a notification when the enterprise policy has
340 // been updated. 343 // been updated.
341 std::set<webkit::ppapi::PluginInstance*> subscribed_to_policy_updates_; 344 std::set<webkit::ppapi::PluginInstance*> subscribed_to_policy_updates_;
342 345
343 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); 346 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
344 }; 347 };
345 348
346 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 349 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/file_system_messages.h ('k') | content/renderer/pepper_plugin_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698