From f09d9379d6e654e7fd95b9d601b1e77f1ac13c3d Mon Sep 17 00:00:00 2001 From: "tony@chromium.org" Date: Tue, 17 Nov 2009 00:10:36 +0000 Subject: Plumb through off the record state from the URL request to the chrome url request data sources. This will allow me to merge IncognitoTabHTMLSource and NewTabHTMLSource and allow me clean up DOMUIThemeSource, but those will be follow up changes. Review URL: http://codereview.chromium.org/397019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32126 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/extensions/extensions_ui.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'chrome/browser/extensions/extensions_ui.h') diff --git a/chrome/browser/extensions/extensions_ui.h b/chrome/browser/extensions/extensions_ui.h index d2fe206..21715ba 100644 --- a/chrome/browser/extensions/extensions_ui.h +++ b/chrome/browser/extensions/extensions_ui.h @@ -43,7 +43,9 @@ class ExtensionsUIHTMLSource : public ChromeURLDataManager::DataSource { // Called when the network layer has requested a resource underneath // the path we registered. - virtual void StartDataRequest(const std::string& path, int request_id); + virtual void StartDataRequest(const std::string& path, + bool is_off_the_record, + int request_id); virtual std::string GetMimeType(const std::string&) const { return "text/html"; } -- cgit v1.1