| Index: chrome/browser/instant/instant_confirm_dialog.cc
|
| diff --git a/chrome/browser/instant/instant_confirm_dialog.cc b/chrome/browser/instant/instant_confirm_dialog.cc
|
| index efaa1c36845169f0f8b3b5ecd20a1a702573d796..0249a87f4dc4c093b6588fe24a28cc23d71a1f1b 100644
|
| --- a/chrome/browser/instant/instant_confirm_dialog.cc
|
| +++ b/chrome/browser/instant/instant_confirm_dialog.cc
|
| @@ -4,16 +4,19 @@
|
|
|
| #include "chrome/browser/instant/instant_confirm_dialog.h"
|
|
|
| +#include "app/l10n_util.h"
|
| #include "chrome/browser/instant/instant_controller.h"
|
| #include "chrome/browser/instant/promo_counter.h"
|
| #include "chrome/browser/prefs/pref_service.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/common/pref_names.h"
|
| +#include "grit/generated_resources.h"
|
|
|
| namespace browser {
|
|
|
| -const char kInstantLearnMoreURL[] =
|
| - "http://www.google.com/support/chrome/bin/answer.py?answer=180655";
|
| +std::string InstantLearnMoreURL() {
|
| + return l10n_util::GetStringUTF8(IDS_INSTANT_LEARN_MORE_URL);
|
| +}
|
|
|
| void ShowInstantConfirmDialogIfNecessary(gfx::NativeWindow parent,
|
| Profile* profile) {
|
|
|