| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |