| 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 WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_H_ | 5 #ifndef WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_H_ |
| 6 #define WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_H_ | 6 #define WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // reference. | 101 // reference. |
| 102 virtual NPObject* GetPluginElement() = 0; | 102 virtual NPObject* GetPluginElement() = 0; |
| 103 | 103 |
| 104 // Cookies | 104 // Cookies |
| 105 virtual void SetCookie(const GURL& url, | 105 virtual void SetCookie(const GURL& url, |
| 106 const GURL& first_party_for_cookies, | 106 const GURL& first_party_for_cookies, |
| 107 const std::string& cookie) = 0; | 107 const std::string& cookie) = 0; |
| 108 virtual std::string GetCookies(const GURL& url, | 108 virtual std::string GetCookies(const GURL& url, |
| 109 const GURL& first_party_for_cookies) = 0; | 109 const GURL& first_party_for_cookies) = 0; |
| 110 | 110 |
| 111 // When a default plugin has downloaded the plugin list and finds it is | |
| 112 // available, it calls this method to notify the renderer. Also it will update | |
| 113 // the status when user clicks on the plugin to install. | |
| 114 virtual void OnMissingPluginStatus(int status) = 0; | |
| 115 | |
| 116 // Handles GetURL/GetURLNotify/PostURL/PostURLNotify requests initiated | 111 // Handles GetURL/GetURLNotify/PostURL/PostURLNotify requests initiated |
| 117 // by plugins. If the plugin wants notification of the result, notify_id will | 112 // by plugins. If the plugin wants notification of the result, notify_id will |
| 118 // be non-zero. | 113 // be non-zero. |
| 119 virtual void HandleURLRequest(const char* url, | 114 virtual void HandleURLRequest(const char* url, |
| 120 const char* method, | 115 const char* method, |
| 121 const char* target, | 116 const char* target, |
| 122 const char* buf, | 117 const char* buf, |
| 123 unsigned int len, | 118 unsigned int len, |
| 124 int notify_id, | 119 int notify_id, |
| 125 bool popups_allowed, | 120 bool popups_allowed, |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 virtual void DidFinishLoading() = 0; | 181 virtual void DidFinishLoading() = 0; |
| 187 virtual void DidFail() = 0; | 182 virtual void DidFail() = 0; |
| 188 virtual bool IsMultiByteResponseExpected() = 0; | 183 virtual bool IsMultiByteResponseExpected() = 0; |
| 189 virtual int ResourceId() = 0; | 184 virtual int ResourceId() = 0; |
| 190 }; | 185 }; |
| 191 | 186 |
| 192 } // namespace npapi | 187 } // namespace npapi |
| 193 } // namespace webkit | 188 } // namespace webkit |
| 194 | 189 |
| 195 #endif // WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_H_ | 190 #endif // WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_H_ |
| OLD | NEW |