| 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 base::PlatformFile* file) OVERRIDE; |
| 271 virtual void SyncGetFileSystemPlatformPath( | 273 virtual void SyncGetFileSystemPlatformPath( |
| 272 const GURL& url, | 274 const GURL& url, |
| 273 FilePath* platform_path) OVERRIDE; | 275 FilePath* platform_path) OVERRIDE; |
| 274 virtual scoped_refptr<base::MessageLoopProxy> | 276 virtual scoped_refptr<base::MessageLoopProxy> |
| 275 GetFileThreadMessageLoopProxy() OVERRIDE; | 277 GetFileThreadMessageLoopProxy() OVERRIDE; |
| 276 | 278 |
| 277 virtual uint32 TCPSocketCreate() OVERRIDE; | 279 virtual uint32 TCPSocketCreate() OVERRIDE; |
| 278 virtual void TCPSocketConnect( | 280 virtual void TCPSocketConnect( |
| 279 webkit::ppapi::PPB_TCPSocket_Private_Impl* socket, | 281 webkit::ppapi::PPB_TCPSocket_Private_Impl* socket, |
| 280 uint32 socket_id, | 282 uint32 socket_id, |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 | 512 |
| 511 scoped_ptr<PepperDeviceEnumerationEventHandler> | 513 scoped_ptr<PepperDeviceEnumerationEventHandler> |
| 512 device_enumeration_event_handler_; | 514 device_enumeration_event_handler_; |
| 513 | 515 |
| 514 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 516 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 515 }; | 517 }; |
| 516 | 518 |
| 517 } // namespace content | 519 } // namespace content |
| 518 | 520 |
| 519 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 521 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |