| 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 virtual void SelectedFindResultChanged(int identifier, int index) OVERRIDE; | 212 virtual void SelectedFindResultChanged(int identifier, int index) OVERRIDE; |
| 213 virtual bool RunFileChooser( | 213 virtual bool RunFileChooser( |
| 214 const WebKit::WebFileChooserParams& params, | 214 const WebKit::WebFileChooserParams& params, |
| 215 WebKit::WebFileChooserCompletion* chooser_completion) OVERRIDE; | 215 WebKit::WebFileChooserCompletion* chooser_completion) OVERRIDE; |
| 216 virtual bool AsyncOpenFile(const FilePath& path, | 216 virtual bool AsyncOpenFile(const FilePath& path, |
| 217 int flags, | 217 int flags, |
| 218 const AsyncOpenFileCallback& callback) OVERRIDE; | 218 const AsyncOpenFileCallback& callback) OVERRIDE; |
| 219 virtual bool AsyncOpenFileSystemURL( | 219 virtual bool AsyncOpenFileSystemURL( |
| 220 const GURL& path, | 220 const GURL& path, |
| 221 int flags, | 221 int flags, |
| 222 const AsyncOpenFileCallback& callback) OVERRIDE; | 222 const AsyncOpenFileSystemURLCallback& callback) OVERRIDE; |
| 223 virtual bool OpenFileSystem( | 223 virtual bool OpenFileSystem( |
| 224 const GURL& url, | 224 const GURL& url, |
| 225 fileapi::FileSystemType type, | 225 fileapi::FileSystemType type, |
| 226 long long size, | 226 long long size, |
| 227 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; | 227 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
| 228 virtual bool MakeDirectory( | 228 virtual bool MakeDirectory( |
| 229 const GURL& path, | 229 const GURL& path, |
| 230 bool recursive, | 230 bool recursive, |
| 231 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; | 231 fileapi::FileSystemCallbackDispatcher* dispatcher) OVERRIDE; |
| 232 virtual bool Query( | 232 virtual bool Query( |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 | 515 |
| 516 scoped_ptr<PepperDeviceEnumerationEventHandler> | 516 scoped_ptr<PepperDeviceEnumerationEventHandler> |
| 517 device_enumeration_event_handler_; | 517 device_enumeration_event_handler_; |
| 518 | 518 |
| 519 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 519 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 520 }; | 520 }; |
| 521 | 521 |
| 522 } // namespace content | 522 } // namespace content |
| 523 | 523 |
| 524 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 524 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |