summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/first_run_dialog.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-05 20:15:56 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-05 20:15:56 +0000
commitd99bcaae9af32923a53f3c448cf95cbf7ad20775 (patch)
tree6b40b46581ced68d2faf6b3fcdde111f981ee7c5 /chrome/browser/gtk/first_run_dialog.cc
parent0dce40724db9c037c33d4e83051705441de2bb6b (diff)
downloadchromium_src-d99bcaae9af32923a53f3c448cf95cbf7ad20775.zip
chromium_src-d99bcaae9af32923a53f3c448cf95cbf7ad20775.tar.gz
chromium_src-d99bcaae9af32923a53f3c448cf95cbf7ad20775.tar.bz2
Remove unneeded browser_process.h includes.
BUG=none TEST=none Review URL: http://codereview.chromium.org/5512009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68323 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/first_run_dialog.cc')
-rw-r--r--chrome/browser/gtk/first_run_dialog.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/chrome/browser/gtk/first_run_dialog.cc b/chrome/browser/gtk/first_run_dialog.cc
index 82f4610..b0f83fc 100644
--- a/chrome/browser/gtk/first_run_dialog.cc
+++ b/chrome/browser/gtk/first_run_dialog.cc
@@ -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";