Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Side by Side Diff: webkit/plugins/ppapi/mock_plugin_delegate.h

Issue 11413200: Refactored PPB_Flash GetSettings to the new pepper resource model (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 virtual bool IsMouseLocked(PluginInstance* instance); 178 virtual bool IsMouseLocked(PluginInstance* instance);
179 virtual void DidChangeCursor(PluginInstance* instance, 179 virtual void DidChangeCursor(PluginInstance* instance,
180 const WebKit::WebCursorInfo& cursor); 180 const WebKit::WebCursorInfo& cursor);
181 virtual void DidReceiveMouseEvent(PluginInstance* instance); 181 virtual void DidReceiveMouseEvent(PluginInstance* instance);
182 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE; 182 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE;
183 virtual bool IsInFullscreenMode(); 183 virtual bool IsInFullscreenMode();
184 virtual bool IsPageVisible() const; 184 virtual bool IsPageVisible() const;
185 virtual int EnumerateDevices(PP_DeviceType_Dev type, 185 virtual int EnumerateDevices(PP_DeviceType_Dev type,
186 const EnumerateDevicesCallback& callback); 186 const EnumerateDevicesCallback& callback);
187 virtual void StopEnumerateDevices(int request_id); 187 virtual void StopEnumerateDevices(int request_id);
188 virtual PP_FlashLSORestrictions GetLocalDataRestrictions(
189 const GURL& document_url,
190 const GURL& plugin_url);
191 }; 188 };
192 189
193 } // namespace ppapi 190 } // namespace ppapi
194 } // namespace webkit 191 } // namespace webkit
195 192
196 #endif // WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_ 193 #endif // WEBKIT_PLUGINS_PPAPI_MOCK_PLUGIN_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698