summaryrefslogtreecommitdiffstats
path: root/chrome/service
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-01 01:34:23 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-01 01:34:23 +0000
commite9b42c1493443678f502de98f664441c67f70a7f (patch)
tree85484ff64f439848b864767a31c1b9b95efb3406 /chrome/service
parentb4773529f0551da68136998a9a13cc4a89230937 (diff)
downloadchromium_src-e9b42c1493443678f502de98f664441c67f70a7f.zip
chromium_src-e9b42c1493443678f502de98f664441c67f70a7f.tar.gz
chromium_src-e9b42c1493443678f502de98f664441c67f70a7f.tar.bz2
Move UrlFetcher to content. I originally thought that it's only used by chrome code, but turns out there are legitimate content uses for HTML5 features like speech/geolocation which need to go to the web.
BUG=76697 Review URL: http://codereview.chromium.org/7006005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87406 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r--chrome/service/cloud_print/cloud_print_helpers.cc2
-rw-r--r--chrome/service/cloud_print/cloud_print_url_fetcher.h2
-rw-r--r--chrome/service/gaia/service_gaia_authenticator.h2
-rw-r--r--chrome/service/service_process.cc2
4 files changed, 4 insertions, 4 deletions
diff --git a/chrome/service/cloud_print/cloud_print_helpers.cc b/chrome/service/cloud_print/cloud_print_helpers.cc
index 7fb9ddd..8761f41 100644
--- a/chrome/service/cloud_print/cloud_print_helpers.cc
+++ b/chrome/service/cloud_print/cloud_print_helpers.cc
@@ -14,8 +14,8 @@
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/service/cloud_print/cloud_print_consts.h"
-#include "chrome/common/net/url_fetcher.h"
#include "chrome/service/service_process.h"
+#include "content/common/url_fetcher.h"
std::string StringFromJobStatus(cloud_print::PrintJobStatus status) {
std::string ret;
diff --git a/chrome/service/cloud_print/cloud_print_url_fetcher.h b/chrome/service/cloud_print/cloud_print_url_fetcher.h
index 433ed56..7cadd35 100644
--- a/chrome/service/cloud_print/cloud_print_url_fetcher.h
+++ b/chrome/service/cloud_print/cloud_print_url_fetcher.h
@@ -9,7 +9,7 @@
#include <string>
#include "base/memory/scoped_ptr.h"
-#include "chrome/common/net/url_fetcher.h"
+#include "content/common/url_fetcher.h"
class DictionaryValue;
class GURL;
diff --git a/chrome/service/gaia/service_gaia_authenticator.h b/chrome/service/gaia/service_gaia_authenticator.h
index bb9424e..5076372 100644
--- a/chrome/service/gaia/service_gaia_authenticator.h
+++ b/chrome/service/gaia/service_gaia_authenticator.h
@@ -10,8 +10,8 @@
#include "base/memory/ref_counted.h"
#include "base/synchronization/waitable_event.h"
-#include "chrome/common/net/url_fetcher.h"
#include "chrome/common/net/gaia/gaia_authenticator.h"
+#include "content/common/url_fetcher.h"
namespace base {
class MessageLoopProxy;
diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc
index 8715ecd..e5e0494 100644
--- a/chrome/service/service_process.cc
+++ b/chrome/service/service_process.cc
@@ -19,13 +19,13 @@
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/env_vars.h"
-#include "chrome/common/net/url_fetcher.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/service_process_util.h"
#include "chrome/service/cloud_print/cloud_print_proxy.h"
#include "chrome/service/net/service_url_request_context.h"
#include "chrome/service/service_ipc_server.h"
#include "chrome/service/service_process_prefs.h"
+#include "content/common/url_fetcher.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "net/base/network_change_notifier.h"