diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-17 00:10:36 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-17 00:10:36 +0000 |
commit | f09d9379d6e654e7fd95b9d601b1e77f1ac13c3d (patch) | |
tree | b06b7fabd30f75949533b4f165f5653c4c150620 /chrome/browser/extensions/extensions_ui.h | |
parent | f83954031eed65b1944548ff66ef479043654877 (diff) | |
download | chromium_src-f09d9379d6e654e7fd95b9d601b1e77f1ac13c3d.zip chromium_src-f09d9379d6e654e7fd95b9d601b1e77f1ac13c3d.tar.gz chromium_src-f09d9379d6e654e7fd95b9d601b1e77f1ac13c3d.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/extensions/extensions_ui.h')
-rw-r--r-- | chrome/browser/extensions/extensions_ui.h | 4 |
1 files changed, 3 insertions, 1 deletions
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"; } |