| 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 CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_H_ | 5 #ifndef CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_H_ |
| 6 #define CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_H_ | 6 #define CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 int notify_id, | 135 int notify_id, |
| 136 const GURL& url, | 136 const GURL& url, |
| 137 const GURL& first_party_for_cookies, | 137 const GURL& first_party_for_cookies, |
| 138 const std::string& method, | 138 const std::string& method, |
| 139 const char* buf, | 139 const char* buf, |
| 140 unsigned int len, | 140 unsigned int len, |
| 141 const GURL& referrer, | 141 const GURL& referrer, |
| 142 bool notify_redirects, | 142 bool notify_redirects, |
| 143 bool is_plugin_src_load, | 143 bool is_plugin_src_load, |
| 144 int origin_pid, | 144 int origin_pid, |
| 145 int render_frame_id) = 0; | 145 int render_frame_id, |
| 146 int render_view_id) = 0; |
| 146 | 147 |
| 147 }; | 148 }; |
| 148 | 149 |
| 149 } // namespace content | 150 } // namespace content |
| 150 | 151 |
| 151 #endif // CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_H_ | 152 #endif // CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_H_ |
| OLD | NEW |