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 WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ |
7 | 7 |
8 #include "webkit/plugins/ppapi/plugin_delegate.h" | 8 #include "webkit/plugins/ppapi/plugin_delegate.h" |
9 | 9 |
10 struct PP_NetAddress_Private; | 10 struct PP_NetAddress_Private; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 virtual void SelectedFindResultChanged(int identifier, int index); | 61 virtual void SelectedFindResultChanged(int identifier, int index); |
62 virtual bool RunFileChooser( | 62 virtual bool RunFileChooser( |
63 const WebKit::WebFileChooserParams& params, | 63 const WebKit::WebFileChooserParams& params, |
64 WebKit::WebFileChooserCompletion* chooser_completion); | 64 WebKit::WebFileChooserCompletion* chooser_completion); |
65 virtual bool AsyncOpenFile(const FilePath& path, | 65 virtual bool AsyncOpenFile(const FilePath& path, |
66 int flags, | 66 int flags, |
67 const AsyncOpenFileCallback& callback); | 67 const AsyncOpenFileCallback& callback); |
68 virtual bool AsyncOpenFileSystemURL(const GURL& path, | 68 virtual bool AsyncOpenFileSystemURL(const GURL& path, |
69 int flags, | 69 int flags, |
70 const AsyncOpenFileCallback& callback); | 70 const AsyncOpenFileCallback& callback); |
| 71 virtual bool AsyncNotifyCloseFileSystemURL(const GURL& path); |
71 virtual bool OpenFileSystem( | 72 virtual bool OpenFileSystem( |
72 const GURL& url, | 73 const GURL& url, |
73 fileapi::FileSystemType type, | 74 fileapi::FileSystemType type, |
74 long long size, | 75 long long size, |
75 fileapi::FileSystemCallbackDispatcher* dispatcher); | 76 fileapi::FileSystemCallbackDispatcher* dispatcher); |
76 virtual bool MakeDirectory( | 77 virtual bool MakeDirectory( |
77 const GURL& path, | 78 const GURL& path, |
78 bool recursive, | 79 bool recursive, |
79 fileapi::FileSystemCallbackDispatcher* dispatcher); | 80 fileapi::FileSystemCallbackDispatcher* dispatcher); |
80 virtual bool Query(const GURL& path, | 81 virtual bool Query(const GURL& path, |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 virtual int EnumerateDevices(PP_DeviceType_Dev type, | 202 virtual int EnumerateDevices(PP_DeviceType_Dev type, |
202 const EnumerateDevicesCallback& callback); | 203 const EnumerateDevicesCallback& callback); |
203 virtual webkit_glue::ClipboardClient* CreateClipboardClient() const; | 204 virtual webkit_glue::ClipboardClient* CreateClipboardClient() const; |
204 virtual std::string GetDeviceID(); | 205 virtual std::string GetDeviceID(); |
205 }; | 206 }; |
206 | 207 |
207 } // namespace ppapi | 208 } // namespace ppapi |
208 } // namespace webkit | 209 } // namespace webkit |
209 | 210 |
210 #endif // WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ | 211 #endif // WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ |
OLD | NEW |