| Index: chrome/browser/extensions/extensions_ui.cc
|
| diff --git a/chrome/browser/extensions/extensions_ui.cc b/chrome/browser/extensions/extensions_ui.cc
|
| index 14ae1dbc4833f17564cebd849e94e59933be57a5..2af1c019180a3f74a7213b30515745ebe8daa944 100644
|
| --- a/chrome/browser/extensions/extensions_ui.cc
|
| +++ b/chrome/browser/extensions/extensions_ui.cc
|
| @@ -27,6 +27,7 @@
|
| #include "chrome/browser/tab_contents/tab_contents.h"
|
| #include "chrome/browser/tab_contents/tab_contents_view.h"
|
| #include "chrome/common/extensions/extension.h"
|
| +#include "chrome/common/extensions/extension_constants.h"
|
| #include "chrome/common/extensions/extension_error_reporter.h"
|
| #include "chrome/common/extensions/user_script.h"
|
| #include "chrome/common/extensions/url_pattern.h"
|
| @@ -72,13 +73,13 @@ void ExtensionsUIHTMLSource::StartDataRequest(const std::string& path,
|
| l10n_util::GetString(IDS_EXTENSIONS_NONE_INSTALLED));
|
| localized_strings.SetString(L"suggestGallery",
|
| l10n_util::GetStringF(IDS_EXTENSIONS_NONE_INSTALLED_SUGGEST_GALLERY,
|
| - std::wstring(L"<a href='") +
|
| - ASCIIToWide(Extension::kGalleryBrowseUrl) +
|
| + std::wstring(L"<a href='") +
|
| + ASCIIToWide(extension_urls::kGalleryBrowsePrefix) +
|
| L"'>",
|
| L"</a>"));
|
| localized_strings.SetString(L"getMoreExtensions",
|
| std::wstring(L"<a href='") +
|
| - ASCIIToWide(Extension::kGalleryBrowseUrl) +
|
| + ASCIIToWide(extension_urls::kGalleryBrowsePrefix) +
|
| L"'>" +
|
| l10n_util::GetString(IDS_GET_MORE_EXTENSIONS) +
|
| L"</a>");
|
|
|