diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-08 06:30:33 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-08 06:30:33 +0000 |
commit | c5212894e576e713ffb90d43bc2e5de55478446e (patch) | |
tree | d94e398b1d6072967dd555fc4a09873a46e08355 /chrome/browser/sync/util | |
parent | 3bbddbde99414282ab8984f79e39daaaf243924a (diff) | |
download | chromium_src-c5212894e576e713ffb90d43bc2e5de55478446e.zip chromium_src-c5212894e576e713ffb90d43bc2e5de55478446e.tar.gz chromium_src-c5212894e576e713ffb90d43bc2e5de55478446e.tar.bz2 |
FBTF: Remove unneeded headers from base/ (part 8)
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3232003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58794 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/util')
-rw-r--r-- | chrome/browser/sync/util/crypto_helpers.h | 3 | ||||
-rw-r--r-- | chrome/browser/sync/util/data_encryption.cc | 4 | ||||
-rw-r--r-- | chrome/browser/sync/util/data_encryption.h | 3 | ||||
-rw-r--r-- | chrome/browser/sync/util/user_settings_win.cc | 3 |
4 files changed, 7 insertions, 6 deletions
diff --git a/chrome/browser/sync/util/crypto_helpers.h b/chrome/browser/sync/util/crypto_helpers.h index 5caca42..5660447 100644 --- a/chrome/browser/sync/util/crypto_helpers.h +++ b/chrome/browser/sync/util/crypto_helpers.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. @@ -11,7 +11,6 @@ // An object to handle calculation of MD5 sums. #include "base/basictypes.h" -#include "base/logging.h" #include "base/md5.h" #include "base/port.h" diff --git a/chrome/browser/sync/util/data_encryption.cc b/chrome/browser/sync/util/data_encryption.cc index 1232447..10f19ec 100644 --- a/chrome/browser/sync/util/data_encryption.cc +++ b/chrome/browser/sync/util/data_encryption.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. // @@ -13,6 +13,8 @@ #include <string> #include <vector> +#include "base/logging.h" + using std::string; using std::vector; diff --git a/chrome/browser/sync/util/data_encryption.h b/chrome/browser/sync/util/data_encryption.h index 1fd0b19..1f48afd 100644 --- a/chrome/browser/sync/util/data_encryption.h +++ b/chrome/browser/sync/util/data_encryption.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. @@ -10,7 +10,6 @@ #include <vector> #include "base/basictypes.h" -#include "base/logging.h" using std::string; using std::vector; diff --git a/chrome/browser/sync/util/user_settings_win.cc b/chrome/browser/sync/util/user_settings_win.cc index 087fe6f..94090ac 100644 --- a/chrome/browser/sync/util/user_settings_win.cc +++ b/chrome/browser/sync/util/user_settings_win.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,6 +6,7 @@ #include <string> +#include "base/logging.h" #include "chrome/browser/sync/util/crypto_helpers.h" #include "chrome/browser/sync/util/data_encryption.h" #include "chrome/common/sqlite_utils.h" |