diff options
author | mpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 20:56:05 +0000 |
---|---|---|
committer | mpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 20:56:05 +0000 |
commit | 481e1a439c0cb4272746873c3244f8a42c72c94e (patch) | |
tree | 062e63aab572711337d89817901585dfb176f8ed /chrome/test/testing_profile.h | |
parent | da942ea95144401b73956ae64f59157a7fcb23e9 (diff) | |
download | chromium_src-481e1a439c0cb4272746873c3244f8a42c72c94e.zip chromium_src-481e1a439c0cb4272746873c3244f8a42c72c94e.tar.gz chromium_src-481e1a439c0cb4272746873c3244f8a42c72c94e.tar.bz2 |
Resurrect ExtensionProcessManager. Move the code for starting extension
instances from ExtensionsService to the manager.
Unlike ExtensionsService, EPM is not shared between an incognito Profile and
its parent.
Review URL: http://codereview.chromium.org/109044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15454 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.h')
-rw-r--r-- | chrome/test/testing_profile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h index 9f4d3ca..e0bbc0b 100644 --- a/chrome/test/testing_profile.h +++ b/chrome/test/testing_profile.h @@ -80,6 +80,9 @@ class TestingProfile : public Profile { virtual UserScriptMaster* GetUserScriptMaster() { return NULL; } + virtual ExtensionProcessManager* GetExtensionProcessManager() { + return NULL; + } virtual SSLHostState* GetSSLHostState() { return NULL; } |