diff options
author | gspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 23:02:54 +0000 |
---|---|---|
committer | gspencer@chromium.org <gspencer@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-11 23:02:54 +0000 |
commit | 01c988df2e091c8c1c7b2d0fe652124d8e2d0101 (patch) | |
tree | a4c2c68a29d0500d6422f72dc9a709919dbf38a3 /chrome/browser/chromeos/proxy_config_service_impl.cc | |
parent | 6ba4d65ab5e3dd39bb7098a4a19265cb7593f482 (diff) | |
download | chromium_src-01c988df2e091c8c1c7b2d0fe652124d8e2d0101.zip chromium_src-01c988df2e091c8c1c7b2d0fe652124d8e2d0101.tar.gz chromium_src-01c988df2e091c8c1c7b2d0fe652124d8e2d0101.tar.bz2 |
This moves the ONC parsing code into chromeos/network/onc
so that it can be used there without violating dependency
rules.
(Using the "refactoring" OWNERS TBR rule...)
BUG=none
TEST=ran unit tests
TBR=jhawkins@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11299236
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/proxy_config_service_impl.cc')
-rw-r--r-- | chrome/browser/chromeos/proxy_config_service_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/proxy_config_service_impl.cc b/chrome/browser/chromeos/proxy_config_service_impl.cc index 0e21f47..74617ad 100644 --- a/chrome/browser/chromeos/proxy_config_service_impl.cc +++ b/chrome/browser/chromeos/proxy_config_service_impl.cc @@ -11,7 +11,6 @@ #include "base/logging.h" #include "base/string_util.h" #include "chrome/browser/chromeos/cros/cros_library.h" -#include "chrome/browser/chromeos/cros/onc_constants.h" #include "chrome/browser/chromeos/login/user_manager.h" #include "chrome/browser/chromeos/settings/cros_settings.h" #include "chrome/browser/chromeos/settings/cros_settings_names.h" @@ -22,6 +21,7 @@ #include "chrome/browser/profiles/profile_manager.h" #include "chrome/common/chrome_notification_types.h" #include "chrome/common/pref_names.h" +#include "chromeos/network/onc/onc_constants.h" #include "content/public/browser/notification_service.h" #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" |