diff options
Diffstat (limited to 'chrome/browser/extensions/webstore_installer.cc')
-rw-r--r-- | chrome/browser/extensions/webstore_installer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/webstore_installer.cc b/chrome/browser/extensions/webstore_installer.cc index fad1f98..a32f4c2 100644 --- a/chrome/browser/extensions/webstore_installer.cc +++ b/chrome/browser/extensions/webstore_installer.cc @@ -28,7 +28,7 @@ const char kNoBrowserError[] = "No browser found"; const char kInlineInstallSource[] = "inline"; const char kDefaultInstallSource[] = ""; -GURL GetWebstoreInstallUrl( +GURL GetWebstoreInstallURL( const std::string& extension_id, const std::string& install_source) { std::vector<std::string> params; params.push_back("id=" + extension_id); @@ -59,7 +59,7 @@ WebstoreInstaller::WebstoreInstaller(Profile* profile, controller_(controller), id_(id), flags_(flags) { - download_url_ = GetWebstoreInstallUrl(id, flags & FLAG_INLINE_INSTALL ? + download_url_ = GetWebstoreInstallURL(id, flags & FLAG_INLINE_INSTALL ? kInlineInstallSource : kDefaultInstallSource); registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_INSTALLED, |