| Index: chrome/browser/gtk/first_run_dialog.cc
|
| ===================================================================
|
| --- chrome/browser/gtk/first_run_dialog.cc (revision 68246)
|
| +++ chrome/browser/gtk/first_run_dialog.cc (working copy)
|
| @@ -4,17 +4,18 @@
|
|
|
| #include "chrome/browser/gtk/first_run_dialog.h"
|
|
|
| +#include <string>
|
| +#include <vector>
|
| +
|
| #include "app/l10n_util.h"
|
| #include "app/resource_bundle.h"
|
| #include "base/i18n/rtl.h"
|
| #include "base/message_loop.h"
|
| #include "base/utf_string_conversions.h"
|
| -#include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/gtk/gtk_chrome_link_button.h"
|
| #include "chrome/browser/gtk/gtk_floating_container.h"
|
| #include "chrome/browser/gtk/gtk_util.h"
|
| #include "chrome/browser/platform_util.h"
|
| -#include "chrome/browser/prefs/pref_service.h"
|
| #include "chrome/browser/process_singleton.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/search_engines/template_url.h"
|
| @@ -31,6 +32,11 @@
|
| #include "chrome/app/breakpad_linux.h"
|
| #endif
|
|
|
| +#if defined(GOOGLE_CHROME_BUILD)
|
| +#include "chrome/browser/browser_process.h"
|
| +#include "chrome/browser/prefs/pref_service.h"
|
| +#endif
|
| +
|
| namespace {
|
|
|
| const gchar* kSearchEngineKey = "template-url-search-engine";
|
|
|