diff options
author | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 23:23:27 +0000 |
---|---|---|
committer | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-05 23:23:27 +0000 |
commit | f314f19be0da3e8116276dbe846542a25cf1b7f5 (patch) | |
tree | 7a6ac2154cfc5e4f00e1f951431d042cbad33a7f /content | |
parent | 7ddfb14ea2a8533283373c74c40593a703419ec0 (diff) | |
download | chromium_src-f314f19be0da3e8116276dbe846542a25cf1b7f5.zip chromium_src-f314f19be0da3e8116276dbe846542a25cf1b7f5.tar.gz chromium_src-f314f19be0da3e8116276dbe846542a25cf1b7f5.tar.bz2 |
Remove some unneeded includes to chrome/ from within content/
BUG=76697
TEST=n/a
Review URL: http://codereview.chromium.org/6793051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/file_system/browser_file_system_helper.cc | 4 | ||||
-rw-r--r-- | content/browser/worker_host/worker_process_host.cc | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/content/browser/file_system/browser_file_system_helper.cc b/content/browser/file_system/browser_file_system_helper.cc index 960d838..9b4af18 100644 --- a/content/browser/file_system/browser_file_system_helper.cc +++ b/content/browser/file_system/browser_file_system_helper.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -6,7 +6,7 @@ #include "base/file_path.h" #include "base/command_line.h" -#include "chrome/common/chrome_switches.h" +#include "content/common/content_switches.h" #include "content/browser/browser_thread.h" scoped_refptr<fileapi::FileSystemContext> CreateFileSystemContext( diff --git a/content/browser/worker_host/worker_process_host.cc b/content/browser/worker_host/worker_process_host.cc index 283874f..2a7a36d 100644 --- a/content/browser/worker_host/worker_process_host.cc +++ b/content/browser/worker_host/worker_process_host.cc @@ -12,10 +12,8 @@ #include "base/message_loop.h" #include "base/string_util.h" #include "base/utf_string_conversions.h" -#include "chrome/browser/content_settings/host_content_settings_map.h" #include "chrome/browser/metrics/user_metrics.h" -#include "chrome/browser/net/chrome_url_request_context.h" -#include "chrome/common/chrome_switches.h" +#include "content/common/content_switches.h" #include "content/browser/appcache/appcache_dispatcher_host.h" #include "content/browser/browser_thread.h" #include "content/browser/child_process_security_policy.h" |