| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 const GURL& url, | 113 const GURL& url, |
| 114 const GURL& first_party_for_cookies, | 114 const GURL& first_party_for_cookies, |
| 115 const std::string& cookie) override; | 115 const std::string& cookie) override; |
| 116 void GetCookies(int render_frame_id, | 116 void GetCookies(int render_frame_id, |
| 117 const GURL& url, | 117 const GURL& url, |
| 118 const GURL& first_party_for_cookies, | 118 const GURL& first_party_for_cookies, |
| 119 const GetCookiesCallback& callback) override; | 119 const GetCookiesCallback& callback) override; |
| 120 | 120 |
| 121 | 121 |
| 122 #if defined(ENABLE_PLUGINS) | 122 #if defined(ENABLE_PLUGINS) |
| 123 void OnGetPlugins(bool refresh, IPC::Message* reply_msg); | 123 void OnGetPlugins(bool refresh, |
| 124 const url::Origin& main_frame_origin, |
| 125 IPC::Message* reply_msg); |
| 124 void GetPluginsCallback(IPC::Message* reply_msg, | 126 void GetPluginsCallback(IPC::Message* reply_msg, |
| 127 const url::Origin& main_frame_origin, |
| 125 const std::vector<WebPluginInfo>& plugins); | 128 const std::vector<WebPluginInfo>& plugins); |
| 126 void OnGetPluginInfo(int render_frame_id, | 129 void OnGetPluginInfo(int render_frame_id, |
| 127 const GURL& url, | 130 const GURL& url, |
| 128 const GURL& policy_url, | 131 const GURL& policy_url, |
| 129 const std::string& mime_type, | 132 const std::string& mime_type, |
| 130 bool* found, | 133 bool* found, |
| 131 WebPluginInfo* info, | 134 WebPluginInfo* info, |
| 132 std::string* actual_mime_type); | 135 std::string* actual_mime_type); |
| 133 void OnOpenChannelToPepperPlugin(const base::FilePath& path, | 136 void OnOpenChannelToPepperPlugin(const base::FilePath& path, |
| 134 IPC::Message* reply_msg); | 137 IPC::Message* reply_msg); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 174 |
| 172 // Whether this process is used for incognito contents. | 175 // Whether this process is used for incognito contents. |
| 173 bool incognito_; | 176 bool incognito_; |
| 174 | 177 |
| 175 const int render_process_id_; | 178 const int render_process_id_; |
| 176 }; | 179 }; |
| 177 | 180 |
| 178 } // namespace content | 181 } // namespace content |
| 179 | 182 |
| 180 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ | 183 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_MESSAGE_FILTER_H_ |
| OLD | NEW |