diff options
author | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-03 07:10:45 +0000 |
---|---|---|
committer | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-03 07:10:45 +0000 |
commit | fae2fb0a99eec92ee3d1024b181c47fda265bdb5 (patch) | |
tree | 4b197d4d2da3456bf50854868ae76fe20186f4e3 /chrome/browser/chrome_browser_main_linux.cc | |
parent | 802d2f24522afc96caddef128e27b67f63ba8a8d (diff) | |
download | chromium_src-fae2fb0a99eec92ee3d1024b181c47fda265bdb5.zip chromium_src-fae2fb0a99eec92ee3d1024b181c47fda265bdb5.tar.gz chromium_src-fae2fb0a99eec92ee3d1024b181c47fda265bdb5.tar.bz2 |
linux: Fix missing include when breakpad is disabled.
chrome/common/chrome_switches.h was only getting included in
hrome/browser/chrome_browser_main_linux.cc when
USE_LINUX_BREAKPAD was defined, but r179938 added a
reference to a constant from it regardless of
USE_LINUX_BREAKPAD.
BUG=171742
Review URL: https://chromiumcodereview.appspot.com/12197002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180296 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main_linux.cc')
-rw-r--r-- | chrome/browser/chrome_browser_main_linux.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/chrome_browser_main_linux.cc b/chrome/browser/chrome_browser_main_linux.cc index 196e9c3..b6a25da 100644 --- a/chrome/browser/chrome_browser_main_linux.cc +++ b/chrome/browser/chrome_browser_main_linux.cc @@ -6,6 +6,7 @@ #include "base/message_loop_proxy.h" #include "chrome/browser/system_monitor/media_transfer_protocol_device_observer_linux.h" +#include "chrome/common/chrome_switches.h" #include "device/media_transfer_protocol/media_transfer_protocol_manager.h" #if !defined(OS_CHROMEOS) @@ -20,14 +21,12 @@ #include "base/linux_util.h" #include "chrome/app/breakpad_linux.h" #include "chrome/browser/prefs/pref_service.h" -#include "chrome/common/chrome_switches.h" #include "chrome/common/env_vars.h" #include "chrome/common/pref_names.h" #if defined(OS_CHROMEOS) #include "chrome/browser/chromeos/settings/cros_settings.h" #include "chrome/browser/chromeos/settings/cros_settings_names.h" -#include "chrome/common/chrome_switches.h" #include "chrome/common/chrome_version_info.h" #endif |