diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-19 08:15:21 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-19 08:15:21 +0000 |
commit | 1d79ff2cfbf5fac3f24cf5603319e490850e05c9 (patch) | |
tree | b307bc04426dbfd95f236150c7671f9862e565b5 /chrome/browser/debugger | |
parent | 7b0908200913a4cdbb9b8b8f918b1d536eb2ac48 (diff) | |
download | chromium_src-1d79ff2cfbf5fac3f24cf5603319e490850e05c9.zip chromium_src-1d79ff2cfbf5fac3f24cf5603319e490850e05c9.tar.gz chromium_src-1d79ff2cfbf5fac3f24cf5603319e490850e05c9.tar.bz2 |
FBTF: Remove unneeded STL includes from src/chrome.
This (re-)inspects files under src/chrome for unneeded #includes of <map>, <string>, <vector>, etc.
BUG=none
TEST=builds
Review URL: http://codereview.chromium.org/3152033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56653 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger')
-rw-r--r-- | chrome/browser/debugger/devtools_manager.h | 3 | ||||
-rw-r--r-- | chrome/browser/debugger/devtools_remote_service.h | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/chrome/browser/debugger/devtools_manager.h b/chrome/browser/debugger/devtools_manager.h index 90144e1..1c60a4d 100644 --- a/chrome/browser/debugger/devtools_manager.h +++ b/chrome/browser/debugger/devtools_manager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -7,7 +7,6 @@ #pragma once #include <map> -#include <set> #include <string> #include "base/ref_counted.h" diff --git a/chrome/browser/debugger/devtools_remote_service.h b/chrome/browser/debugger/devtools_remote_service.h index 8ad17ba..bd813bd 100644 --- a/chrome/browser/debugger/devtools_remote_service.h +++ b/chrome/browser/debugger/devtools_remote_service.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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,8 +6,6 @@ #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_REMOTE_SERVICE_H_ #pragma once -#include <string> - #include "base/basictypes.h" #include "chrome/browser/debugger/devtools_remote.h" |