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

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

Issue 11411102: Deprecate and remove unused PPB_Flash functions. (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
« no previous file with comments | « webkit/plugins/ppapi/mock_plugin_delegate.cc ('k') | webkit/plugins/ppapi/ppb_flash_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PLUGIN_DELEGATE_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_
6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 EnumerateDevicesCallback; 651 EnumerateDevicesCallback;
652 652
653 // Enumerates devices of the specified type. The request ID passed into the 653 // Enumerates devices of the specified type. The request ID passed into the
654 // callback will be the same as the return value. 654 // callback will be the same as the return value.
655 virtual int EnumerateDevices(PP_DeviceType_Dev type, 655 virtual int EnumerateDevices(PP_DeviceType_Dev type,
656 const EnumerateDevicesCallback& callback) = 0; 656 const EnumerateDevicesCallback& callback) = 0;
657 // Stop enumerating devices of the specified |request_id|. The |request_id| 657 // Stop enumerating devices of the specified |request_id|. The |request_id|
658 // is the return value of EnumerateDevicesCallback. 658 // is the return value of EnumerateDevicesCallback.
659 virtual void StopEnumerateDevices(int request_id) = 0; 659 virtual void StopEnumerateDevices(int request_id) = 0;
660 660
661 // Returns a Device ID
662 virtual std::string GetDeviceID() = 0;
663
664 // Returns restrictions on local data handled by the plug-in. 661 // Returns restrictions on local data handled by the plug-in.
665 virtual PP_FlashLSORestrictions GetLocalDataRestrictions( 662 virtual PP_FlashLSORestrictions GetLocalDataRestrictions(
666 const GURL& document_url, 663 const GURL& document_url,
667 const GURL& plugin_url) = 0; 664 const GURL& plugin_url) = 0;
668 }; 665 };
669 666
670 } // namespace ppapi 667 } // namespace ppapi
671 } // namespace webkit 668 } // namespace webkit
672 669
673 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_ 670 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_DELEGATE_H_
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/mock_plugin_delegate.cc ('k') | webkit/plugins/ppapi/ppb_flash_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698