| 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/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/sequenced_task_runner_helpers.h" | 13 #include "base/sequenced_task_runner_helpers.h" |
| 13 #include "content/public/browser/browser_message_filter.h" | 14 #include "content/public/browser/browser_message_filter.h" |
| 14 #include "third_party/WebKit/public/web/WebCache.h" | 15 #include "third_party/WebKit/public/web/WebCache.h" |
| 15 | 16 |
| 16 class GURL; | 17 class GURL; |
| 17 class Profile; | 18 class Profile; |
| 18 | 19 |
| 19 namespace chrome_browser_net { | 20 namespace chrome_browser_net { |
| 20 class Predictor; | 21 class Predictor; |
| 21 } | 22 } |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 // used on the IO thread. | 126 // used on the IO thread. |
| 126 chrome_browser_net::Predictor* predictor_; | 127 chrome_browser_net::Predictor* predictor_; |
| 127 | 128 |
| 128 // Used to look up permissions at database creation time. | 129 // Used to look up permissions at database creation time. |
| 129 scoped_refptr<content_settings::CookieSettings> cookie_settings_; | 130 scoped_refptr<content_settings::CookieSettings> cookie_settings_; |
| 130 | 131 |
| 131 DISALLOW_COPY_AND_ASSIGN(ChromeRenderMessageFilter); | 132 DISALLOW_COPY_AND_ASSIGN(ChromeRenderMessageFilter); |
| 132 }; | 133 }; |
| 133 | 134 |
| 134 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ | 135 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ |
| OLD | NEW |