Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: chrome/browser/net/chrome_url_request_context.h

Issue 6697012: Remove 'off the record' references from ChromeURLContext. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Removed 'off the record' references from ChromeURLRequestContext. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/extension_protocols.cc ('k') | chrome/browser/net/chrome_url_request_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/chrome_url_request_context.h
diff --git a/chrome/browser/net/chrome_url_request_context.h b/chrome/browser/net/chrome_url_request_context.h
index 1f1b09c74abe4b1043382f9e17e582639a507946..fab3f71d75408d1cd9fcf8abffbba579ad44b37e 100644
--- a/chrome/browser/net/chrome_url_request_context.h
+++ b/chrome/browser/net/chrome_url_request_context.h
@@ -73,8 +73,8 @@ class ChromeURLRequestContext : public net::URLRequestContext {
return file_system_context_.get();
}
- bool is_off_the_record() const {
- return is_off_the_record_;
+ bool is_incognito() const {
+ return is_incognito_;
}
virtual const std::string& GetUserAgent(const GURL& url) const;
@@ -101,8 +101,8 @@ class ChromeURLRequestContext : public net::URLRequestContext {
void set_user_script_dir_path(const FilePath& path) {
user_script_dir_path_ = path;
}
- void set_is_off_the_record(bool is_off_the_record) {
- is_off_the_record_ = is_off_the_record;
+ void set_is_incognito(bool is_incognito) {
+ is_incognito_ = is_incognito;
}
void set_host_content_settings_map(
HostContentSettingsMap* host_content_settings_map) {
@@ -156,7 +156,7 @@ class ChromeURLRequestContext : public net::URLRequestContext {
scoped_refptr<prerender::PrerenderManager> prerender_manager_;
scoped_ptr<ChromeURLDataManagerBackend> chrome_url_data_manager_backend_;
- bool is_off_the_record_;
+ bool is_incognito_;
DISALLOW_COPY_AND_ASSIGN(ChromeURLRequestContext);
};
« no previous file with comments | « chrome/browser/extensions/extension_protocols.cc ('k') | chrome/browser/net/chrome_url_request_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698