| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_RENDERER_HOST_RESOURCE_MESSAGE_FILTER_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RESOURCE_MESSAGE_FILTER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_MESSAGE_FILTER_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_MESSAGE_FILTER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
| 10 #include <windows.h> | 10 #include <windows.h> |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 const file_util::FileInfo& file_info); | 134 const file_util::FileInfo& file_info); |
| 135 | 135 |
| 136 virtual ~ResourceMessageFilter(); | 136 virtual ~ResourceMessageFilter(); |
| 137 | 137 |
| 138 void OnMsgCreateWindow(const ViewHostMsg_CreateWindow_Params& params, | 138 void OnMsgCreateWindow(const ViewHostMsg_CreateWindow_Params& params, |
| 139 int* route_id, | 139 int* route_id, |
| 140 int64* cloned_session_storage_namespace_id); | 140 int64* cloned_session_storage_namespace_id); |
| 141 void OnMsgCreateWidget(int opener_id, | 141 void OnMsgCreateWidget(int opener_id, |
| 142 WebKit::WebPopupType popup_type, | 142 WebKit::WebPopupType popup_type, |
| 143 int* route_id); | 143 int* route_id); |
| 144 void OnMsgCreateFullscreenWidget(int opener_id, |
| 145 WebKit::WebPopupType popup_type, |
| 146 int* route_id); |
| 144 void OnSetCookie(const IPC::Message& message, | 147 void OnSetCookie(const IPC::Message& message, |
| 145 const GURL& url, | 148 const GURL& url, |
| 146 const GURL& first_party_for_cookies, | 149 const GURL& first_party_for_cookies, |
| 147 const std::string& cookie); | 150 const std::string& cookie); |
| 148 void OnGetCookies(const GURL& url, | 151 void OnGetCookies(const GURL& url, |
| 149 const GURL& first_party_for_cookies, | 152 const GURL& first_party_for_cookies, |
| 150 IPC::Message* reply_msg); | 153 IPC::Message* reply_msg); |
| 151 void OnGetRawCookies(const GURL& url, | 154 void OnGetRawCookies(const GURL& url, |
| 152 const GURL& first_party_for_cookies, | 155 const GURL& first_party_for_cookies, |
| 153 IPC::Message* reply_msg); | 156 IPC::Message* reply_msg); |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 IPC::Message* reply_msg_; | 523 IPC::Message* reply_msg_; |
| 521 scoped_refptr<ResourceMessageFilter> filter_; | 524 scoped_refptr<ResourceMessageFilter> filter_; |
| 522 scoped_refptr<URLRequestContext> context_; | 525 scoped_refptr<URLRequestContext> context_; |
| 523 int render_process_id_; | 526 int render_process_id_; |
| 524 int render_view_id_; | 527 int render_view_id_; |
| 525 bool raw_cookies_; | 528 bool raw_cookies_; |
| 526 scoped_refptr<net::CookieStore> cookie_store_; | 529 scoped_refptr<net::CookieStore> cookie_store_; |
| 527 }; | 530 }; |
| 528 | 531 |
| 529 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_MESSAGE_FILTER_H_ | 532 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_MESSAGE_FILTER_H_ |
| OLD | NEW |