| Index: content/public/browser/navigation_entry.h
|
| diff --git a/content/public/browser/navigation_entry.h b/content/public/browser/navigation_entry.h
|
| index 9259ff585a04be14566c3f3ff3f19e1f7ffab116..4a872d1027f73abfd16cf25597d363943b7a4b97 100644
|
| --- a/content/public/browser/navigation_entry.h
|
| +++ b/content/public/browser/navigation_entry.h
|
| @@ -142,6 +142,10 @@ class NavigationEntry {
|
| // Store the URL that caused this NavigationEntry to be created.
|
| virtual void SetOriginalRequestURL(const GURL& original_url) = 0;
|
| virtual const GURL& GetOriginalRequestURL() const = 0;
|
| +
|
| + // Store whether or not we're overriding the user agent.
|
| + virtual void SetIsOverridingUserAgent(bool override) = 0;
|
| + virtual bool GetIsOverridingUserAgent() const = 0;
|
| };
|
|
|
| } // namespace content
|
|
|