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

Unified Diff: chrome/browser/ui/webui/chrome_url_data_manager_backend.cc

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/profiles/profile_io_data.cc ('k') | content/browser/worker_host/worker_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/chrome_url_data_manager_backend.cc
diff --git a/chrome/browser/ui/webui/chrome_url_data_manager_backend.cc b/chrome/browser/ui/webui/chrome_url_data_manager_backend.cc
index 40aa618261aa4b6dd2893252062aa460cec60bcc..60209fd074683ce9eb173319a5a04c3bb0745b26 100644
--- a/chrome/browser/ui/webui/chrome_url_data_manager_backend.cc
+++ b/chrome/browser/ui/webui/chrome_url_data_manager_backend.cc
@@ -207,7 +207,7 @@ bool ChromeURLDataManagerBackend::StartRequest(const GURL& url,
// The DataSource is agnostic to which thread StartDataRequest is called
// on for this path. Call directly into it from this thread, the IO
// thread.
- source->StartDataRequest(path, context->is_off_the_record(), request_id);
+ source->StartDataRequest(path, context->is_incognito(), request_id);
} else {
// The DataSource wants StartDataRequest to be called on a specific thread,
// usually the UI thread, for this path.
@@ -215,7 +215,7 @@ bool ChromeURLDataManagerBackend::StartRequest(const GURL& url,
FROM_HERE,
NewRunnableMethod(source,
&ChromeURLDataManager::DataSource::StartDataRequest,
- path, context->is_off_the_record(), request_id));
+ path, context->is_incognito(), request_id));
}
return true;
}
« no previous file with comments | « chrome/browser/profiles/profile_io_data.cc ('k') | content/browser/worker_host/worker_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698