| 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_PRERENDER_PRERENDER_MESSAGE_FILTER_H_ | 5 #ifndef CHROME_BROWSER_PRERENDER_PRERENDER_MESSAGE_FILTER_H_ |
| 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_MESSAGE_FILTER_H_ | 6 #define CHROME_BROWSER_PRERENDER_PRERENDER_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 9 #include "components/keyed_service/core/keyed_service_shutdown_notifier.h" | 10 #include "components/keyed_service/core/keyed_service_shutdown_notifier.h" |
| 10 #include "content/public/browser/browser_message_filter.h" | 11 #include "content/public/browser/browser_message_filter.h" |
| 11 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 12 | 13 |
| 13 class Profile; | 14 class Profile; |
| 14 struct PrerenderAttributes; | 15 struct PrerenderAttributes; |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 struct Referrer; | 18 struct Referrer; |
| 18 } | 19 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 63 |
| 63 scoped_ptr<KeyedServiceShutdownNotifier::Subscription> shutdown_notifier_; | 64 scoped_ptr<KeyedServiceShutdownNotifier::Subscription> shutdown_notifier_; |
| 64 | 65 |
| 65 DISALLOW_COPY_AND_ASSIGN(PrerenderMessageFilter); | 66 DISALLOW_COPY_AND_ASSIGN(PrerenderMessageFilter); |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace prerender | 69 } // namespace prerender |
| 69 | 70 |
| 70 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_MESSAGE_FILTER_H_ | 71 #endif // CHROME_BROWSER_PRERENDER_PRERENDER_MESSAGE_FILTER_H_ |
| 71 | 72 |
| OLD | NEW |