Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Unified Diff: base/command_line.cc

Issue 6410105: run iwyu on base! Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/base_switches.cc ('k') | base/crypto/cssm_init.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.cc
diff --git a/base/command_line.cc b/base/command_line.cc
index 66b4437dcf171c62d86257de04b2c3996923f620..f251b9ae926522b8d70d146d49e2d2de5218fff6 100644
--- a/base/command_line.cc
+++ b/base/command_line.cc
@@ -2,27 +2,26 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stdbool.h>
+#include <stddef.h>
+#include <map>
+#include <string>
+#include <utility>
+#include <vector>
+
+#include "base/basictypes.h"
#include "base/command_line.h"
-
-#include <algorithm>
-
#include "base/file_path.h"
-#include "base/file_util.h"
#include "base/logging.h"
-#include "base/singleton.h"
+#include "base/string_piece.h"
#include "base/string_split.h"
#include "base/string_util.h"
-#include "base/sys_string_conversions.h"
-#include "base/utf_string_conversions.h"
#include "build/build_config.h"
#if defined(OS_WIN)
-#include <windows.h>
#include <shellapi.h>
+#include <windows.h>
#elif defined(OS_POSIX)
-#include <limits.h>
-#include <stdlib.h>
-#include <unistd.h>
#endif
CommandLine* CommandLine::current_process_commandline_ = NULL;
« no previous file with comments | « base/base_switches.cc ('k') | base/crypto/cssm_init.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698