summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-10 20:46:54 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-10 20:46:54 +0000
commit6d11ff807a6e0d3f0e769dc8587da281230c9e89 (patch)
treeb623ab0d0973962263bef94a6ba460820b1cb621 /chrome
parent5b29a145327916e67cf09ea6710e4b1ad1eb7c51 (diff)
downloadchromium_src-6d11ff807a6e0d3f0e769dc8587da281230c9e89.zip
chromium_src-6d11ff807a6e0d3f0e769dc8587da281230c9e89.tar.gz
chromium_src-6d11ff807a6e0d3f0e769dc8587da281230c9e89.tar.bz2
Cleanup: Add a bunch of missing includes.
BUG=none TEST=none Review URL: http://codereview.chromium.org/2018001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46850 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/automation/ui_controls_mac.mm4
-rw-r--r--chrome/browser/password_manager/password_store_mac.cc4
-rw-r--r--chrome/browser/views/about_network_dialog.cc3
-rw-r--r--chrome/browser/views/shell_dialogs_win.cc3
4 files changed, 10 insertions, 4 deletions
diff --git a/chrome/browser/automation/ui_controls_mac.mm b/chrome/browser/automation/ui_controls_mac.mm
index e16a968..715135c1 100644
--- a/chrome/browser/automation/ui_controls_mac.mm
+++ b/chrome/browser/automation/ui_controls_mac.mm
@@ -2,10 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "chrome/browser/automation/ui_controls.h"
+
#import <Cocoa/Cocoa.h>
#include <mach/mach_time.h>
-#include "chrome/browser/automation/ui_controls.h"
+#include "base/message_loop.h"
#include "chrome/browser/chrome_thread.h"
// Implementation details: We use [NSApplication sendEvent:] instead
diff --git a/chrome/browser/password_manager/password_store_mac.cc b/chrome/browser/password_manager/password_store_mac.cc
index de8e5d5..02f7eef 100644
--- a/chrome/browser/password_manager/password_store_mac.cc
+++ b/chrome/browser/password_manager/password_store_mac.cc
@@ -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,11 +6,13 @@
#include "chrome/browser/password_manager/password_store_mac_internal.h"
#include <CoreServices/CoreServices.h>
+#include <set>
#include <string>
#include <vector>
#include "base/logging.h"
#include "base/mac_util.h"
+#include "base/message_loop.h"
#include "base/stl_util-inl.h"
#include "base/string_util.h"
#include "base/task.h"
diff --git a/chrome/browser/views/about_network_dialog.cc b/chrome/browser/views/about_network_dialog.cc
index 0fc8e16..b9375ca 100644
--- a/chrome/browser/views/about_network_dialog.cc
+++ b/chrome/browser/views/about_network_dialog.cc
@@ -1,9 +1,10 @@
-// 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.
#include "chrome/browser/views/about_network_dialog.h"
+#include "base/message_loop.h"
#include "base/thread.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/chrome_thread.h"
diff --git a/chrome/browser/views/shell_dialogs_win.cc b/chrome/browser/views/shell_dialogs_win.cc
index 7d4f8ef..199b384 100644
--- a/chrome/browser/views/shell_dialogs_win.cc
+++ b/chrome/browser/views/shell_dialogs_win.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 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.
@@ -14,6 +14,7 @@
#include "app/l10n_util.h"
#include "app/win_util.h"
#include "base/file_util.h"
+#include "base/message_loop.h"
#include "base/registry.h"
#include "base/scoped_comptr_win.h"
#include "base/thread.h"