| OLD | NEW |
| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 const webkit::ppapi::PepperFilePath& path, | 243 const webkit::ppapi::PepperFilePath& path, |
| 244 bool recursive) OVERRIDE; | 244 bool recursive) OVERRIDE; |
| 245 virtual base::PlatformFileError CreateDir( | 245 virtual base::PlatformFileError CreateDir( |
| 246 const webkit::ppapi::PepperFilePath& path) OVERRIDE; | 246 const webkit::ppapi::PepperFilePath& path) OVERRIDE; |
| 247 virtual base::PlatformFileError QueryFile( | 247 virtual base::PlatformFileError QueryFile( |
| 248 const webkit::ppapi::PepperFilePath& path, | 248 const webkit::ppapi::PepperFilePath& path, |
| 249 base::PlatformFileInfo* info) OVERRIDE; | 249 base::PlatformFileInfo* info) OVERRIDE; |
| 250 virtual base::PlatformFileError GetDirContents( | 250 virtual base::PlatformFileError GetDirContents( |
| 251 const webkit::ppapi::PepperFilePath& path, | 251 const webkit::ppapi::PepperFilePath& path, |
| 252 webkit::ppapi::DirContents* contents) OVERRIDE; | 252 webkit::ppapi::DirContents* contents) OVERRIDE; |
| 253 virtual void SyncGetFileSystemPlatformPath( |
| 254 const GURL& url, |
| 255 FilePath* platform_path) OVERRIDE; |
| 253 virtual scoped_refptr<base::MessageLoopProxy> | 256 virtual scoped_refptr<base::MessageLoopProxy> |
| 254 GetFileThreadMessageLoopProxy() OVERRIDE; | 257 GetFileThreadMessageLoopProxy() OVERRIDE; |
| 255 virtual int32_t ConnectTcp( | 258 virtual int32_t ConnectTcp( |
| 256 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector, | 259 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector, |
| 257 const char* host, | 260 const char* host, |
| 258 uint16_t port) OVERRIDE; | 261 uint16_t port) OVERRIDE; |
| 259 virtual int32_t ConnectTcpAddress( | 262 virtual int32_t ConnectTcpAddress( |
| 260 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector, | 263 webkit::ppapi::PPB_Flash_NetConnector_Impl* connector, |
| 261 const struct PP_Flash_NetAddress* addr) OVERRIDE; | 264 const struct PP_Flash_NetAddress* addr) OVERRIDE; |
| 262 // This is the completion for both |ConnectTcp()| and |ConnectTcpAddress()|. | 265 // This is the completion for both |ConnectTcp()| and |ConnectTcpAddress()|. |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 bool is_pepper_plugin_focused_; | 339 bool is_pepper_plugin_focused_; |
| 337 | 340 |
| 338 // Set of instances to receive a notification when the enterprise policy has | 341 // Set of instances to receive a notification when the enterprise policy has |
| 339 // been updated. | 342 // been updated. |
| 340 std::set<webkit::ppapi::PluginInstance*> subscribed_to_policy_updates_; | 343 std::set<webkit::ppapi::PluginInstance*> subscribed_to_policy_updates_; |
| 341 | 344 |
| 342 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 345 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 343 }; | 346 }; |
| 344 | 347 |
| 345 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 348 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |