diff options
author | bbudge@google.com <bbudge@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 21:53:26 +0000 |
---|---|---|
committer | bbudge@google.com <bbudge@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 21:53:26 +0000 |
commit | 8266d6688589e140bf71fb862be16239880e20e6 (patch) | |
tree | 1526eeabffbdec27ab7785345905e64d8ba0a6ef /chrome/test | |
parent | 5122c62e1768b7384ee28937b69cd90baa5a0c32 (diff) | |
download | chromium_src-8266d6688589e140bf71fb862be16239880e20e6.zip chromium_src-8266d6688589e140bf71fb862be16239880e20e6.tar.gz chromium_src-8266d6688589e140bf71fb862be16239880e20e6.tar.bz2 |
Remember whether an Extension/App was installed from the Web Store.
http://code.google.com/p/chromium/issues/detail?id=85937
Review URL: http://codereview.chromium.org/7324009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92243 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/live_sync/live_sync_extension_helper.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/test/live_sync/live_sync_extension_helper.cc b/chrome/test/live_sync/live_sync_extension_helper.cc index c5772c3..c58251b 100644 --- a/chrome/test/live_sync/live_sync_extension_helper.cc +++ b/chrome/test/live_sync/live_sync_extension_helper.cc @@ -50,7 +50,8 @@ void LiveSyncExtensionHelper::InstallExtension( scoped_refptr<Extension> extension = GetExtension(profile, name, type); ASSERT_TRUE(extension.get()) << "Could not get extension " << name << " (profile = " << profile << ")"; - profile->GetExtensionService()->OnExtensionInstalled(extension); + profile->GetExtensionService()->OnExtensionInstalled( + extension, extension->UpdatesFromGallery()); } void LiveSyncExtensionHelper::UninstallExtension( |