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 CONTENT_PUBLIC_BROWSER_NAVIGATION_ENTRY_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_NAVIGATION_ENTRY_H_ |
6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_ENTRY_H_ | 6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_ENTRY_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/string16.h" | 10 #include "base/string16.h" |
12 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
13 #include "content/public/common/page_transition_types.h" | 12 #include "content/public/common/page_transition_types.h" |
14 #include "content/public/common/page_type.h" | 13 #include "content/public/common/page_type.h" |
15 #include "content/public/common/referrer.h" | 14 #include "content/public/common/referrer.h" |
16 | 15 |
17 class GURL; | 16 class GURL; |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 virtual const GURL& GetOriginalRequestURL() const = 0; | 143 virtual const GURL& GetOriginalRequestURL() const = 0; |
145 | 144 |
146 // Store whether or not we're overriding the user agent. | 145 // Store whether or not we're overriding the user agent. |
147 virtual void SetIsOverridingUserAgent(bool override) = 0; | 146 virtual void SetIsOverridingUserAgent(bool override) = 0; |
148 virtual bool GetIsOverridingUserAgent() const = 0; | 147 virtual bool GetIsOverridingUserAgent() const = 0; |
149 }; | 148 }; |
150 | 149 |
151 } // namespace content | 150 } // namespace content |
152 | 151 |
153 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_ENTRY_H_ | 152 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_ENTRY_H_ |
OLD | NEW |