diff options
author | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 21:57:53 +0000 |
---|---|---|
committer | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 21:57:53 +0000 |
commit | 4361c7ca9c1a850f3c075612bd0e20630b821355 (patch) | |
tree | 98b7e5e2f1a4923a4d2df5d97620d8abfd29d4a5 /chrome/browser/profile.cc | |
parent | 9fabbf77b5b467003287b055aece906a4330de86 (diff) | |
download | chromium_src-4361c7ca9c1a850f3c075612bd0e20630b821355.zip chromium_src-4361c7ca9c1a850f3c075612bd0e20630b821355.tar.gz chromium_src-4361c7ca9c1a850f3c075612bd0e20630b821355.tar.bz2 |
Refactor ChromeURLRequestContext to pull out ExtensionInfoMap into a shared
data structure that all the different contexts have a handle to.
BUG=56558
TEST=no functional change
Review URL: http://codereview.chromium.org/3439017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61120 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index 36fabbd..eb7157d 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -560,6 +560,10 @@ class OffTheRecordProfileImpl : public Profile, return blob_storage_context_; } + virtual ExtensionInfoMap* GetExtensionInfoMap() { + return profile_->GetExtensionInfoMap(); + } + private: NotificationRegistrar registrar_; |