| OLD | NEW |
| 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 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 const ppapi::PepperFilePath& path, | 261 const ppapi::PepperFilePath& path, |
| 262 bool recursive) OVERRIDE; | 262 bool recursive) OVERRIDE; |
| 263 virtual base::PlatformFileError CreateDir( | 263 virtual base::PlatformFileError CreateDir( |
| 264 const ppapi::PepperFilePath& path) OVERRIDE; | 264 const ppapi::PepperFilePath& path) OVERRIDE; |
| 265 virtual base::PlatformFileError QueryFile( | 265 virtual base::PlatformFileError QueryFile( |
| 266 const ppapi::PepperFilePath& path, | 266 const ppapi::PepperFilePath& path, |
| 267 base::PlatformFileInfo* info) OVERRIDE; | 267 base::PlatformFileInfo* info) OVERRIDE; |
| 268 virtual base::PlatformFileError GetDirContents( | 268 virtual base::PlatformFileError GetDirContents( |
| 269 const ppapi::PepperFilePath& path, | 269 const ppapi::PepperFilePath& path, |
| 270 ppapi::DirContents* contents) OVERRIDE; | 270 ppapi::DirContents* contents) OVERRIDE; |
| 271 virtual base::PlatformFileError CreateTemporaryFile( |
| 272 const ppapi::PepperFilePath& dir_path, |
| 273 base::PlatformFile* file, |
| 274 std::string* file_name) OVERRIDE; |
| 271 virtual void SyncGetFileSystemPlatformPath( | 275 virtual void SyncGetFileSystemPlatformPath( |
| 272 const GURL& url, | 276 const GURL& url, |
| 273 FilePath* platform_path) OVERRIDE; | 277 FilePath* platform_path) OVERRIDE; |
| 274 virtual scoped_refptr<base::MessageLoopProxy> | 278 virtual scoped_refptr<base::MessageLoopProxy> |
| 275 GetFileThreadMessageLoopProxy() OVERRIDE; | 279 GetFileThreadMessageLoopProxy() OVERRIDE; |
| 276 | 280 |
| 277 virtual uint32 TCPSocketCreate() OVERRIDE; | 281 virtual uint32 TCPSocketCreate() OVERRIDE; |
| 278 virtual void TCPSocketConnect( | 282 virtual void TCPSocketConnect( |
| 279 webkit::ppapi::PPB_TCPSocket_Private_Impl* socket, | 283 webkit::ppapi::PPB_TCPSocket_Private_Impl* socket, |
| 280 uint32 socket_id, | 284 uint32 socket_id, |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 | 514 |
| 511 scoped_ptr<PepperDeviceEnumerationEventHandler> | 515 scoped_ptr<PepperDeviceEnumerationEventHandler> |
| 512 device_enumeration_event_handler_; | 516 device_enumeration_event_handler_; |
| 513 | 517 |
| 514 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 518 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 515 }; | 519 }; |
| 516 | 520 |
| 517 } // namespace content | 521 } // namespace content |
| 518 | 522 |
| 519 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 523 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |