| OLD | NEW |
| 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 CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/sequenced_task_runner_helpers.h" | 13 #include "base/task/sequenced_task_runner_helpers.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
| 15 #include "chrome/common/content_settings.h" | 15 #include "chrome/common/content_settings.h" |
| 16 #include "content/public/browser/browser_message_filter.h" | 16 #include "content/public/browser/browser_message_filter.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" |
| 18 | 18 |
| 19 class CookieSettings; | 19 class CookieSettings; |
| 20 struct ExtensionHostMsg_APIActionOrEvent_Params; | 20 struct ExtensionHostMsg_APIActionOrEvent_Params; |
| 21 struct ExtensionHostMsg_DOMAction_Params; | 21 struct ExtensionHostMsg_DOMAction_Params; |
| 22 struct ExtensionHostMsg_Request_Params; | 22 struct ExtensionHostMsg_Request_Params; |
| 23 struct ExtensionMsg_ExternalConnectionInfo; | 23 struct ExtensionMsg_ExternalConnectionInfo; |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 scoped_refptr<ExtensionInfoMap> extension_info_map_; | 206 scoped_refptr<ExtensionInfoMap> extension_info_map_; |
| 207 // Used to look up permissions at database creation time. | 207 // Used to look up permissions at database creation time. |
| 208 scoped_refptr<CookieSettings> cookie_settings_; | 208 scoped_refptr<CookieSettings> cookie_settings_; |
| 209 | 209 |
| 210 base::WeakPtrFactory<ChromeRenderMessageFilter> weak_ptr_factory_; | 210 base::WeakPtrFactory<ChromeRenderMessageFilter> weak_ptr_factory_; |
| 211 | 211 |
| 212 DISALLOW_COPY_AND_ASSIGN(ChromeRenderMessageFilter); | 212 DISALLOW_COPY_AND_ASSIGN(ChromeRenderMessageFilter); |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ | 215 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ |
| OLD | NEW |