diff options
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/util/chrome_frame_distribution.cc | 3 | ||||
-rw-r--r-- | chrome/installer/util/copy_tree_work_item.cc | 4 | ||||
-rw-r--r-- | chrome/installer/util/create_dir_work_item.cc | 3 | ||||
-rw-r--r-- | chrome/installer/util/create_reg_key_work_item.cc | 5 | ||||
-rw-r--r-- | chrome/installer/util/delete_reg_value_work_item.cc | 3 | ||||
-rw-r--r-- | chrome/installer/util/helper.cc | 3 | ||||
-rw-r--r-- | chrome/installer/util/logging_installer.h | 6 | ||||
-rw-r--r-- | chrome/installer/util/move_tree_work_item.cc | 4 | ||||
-rw-r--r-- | chrome/installer/util/self_reg_work_item.cc | 3 | ||||
-rw-r--r-- | chrome/installer/util/set_reg_value_work_item.cc | 6 | ||||
-rw-r--r-- | chrome/installer/util/work_item_list.cc | 6 |
11 files changed, 28 insertions, 18 deletions
diff --git a/chrome/installer/util/chrome_frame_distribution.cc b/chrome/installer/util/chrome_frame_distribution.cc index 423731b..df07986 100644 --- a/chrome/installer/util/chrome_frame_distribution.cc +++ b/chrome/installer/util/chrome_frame_distribution.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. // @@ -12,7 +12,6 @@ #include <string> #include <windows.h> -#include "base/logging.h" #include "base/string_util.h" #include "chrome/installer/util/l10n_string_util.h" #include "chrome/installer/util/google_update_constants.h" diff --git a/chrome/installer/util/copy_tree_work_item.cc b/chrome/installer/util/copy_tree_work_item.cc index 22007990..bf270e9 100644 --- a/chrome/installer/util/copy_tree_work_item.cc +++ b/chrome/installer/util/copy_tree_work_item.cc @@ -1,11 +1,13 @@ -// 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/installer/util/copy_tree_work_item.h" #include <shlwapi.h> + #include "base/file_util.h" +#include "base/logging.h" #include "chrome/installer/util/logging_installer.h" CopyTreeWorkItem::~CopyTreeWorkItem() { diff --git a/chrome/installer/util/create_dir_work_item.cc b/chrome/installer/util/create_dir_work_item.cc index 3cfd1fb..ad19b8e 100644 --- a/chrome/installer/util/create_dir_work_item.cc +++ b/chrome/installer/util/create_dir_work_item.cc @@ -1,8 +1,9 @@ -// 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 "base/file_util.h" +#include "base/logging.h" #include "chrome/installer/util/create_dir_work_item.h" #include "chrome/installer/util/logging_installer.h" diff --git a/chrome/installer/util/create_reg_key_work_item.cc b/chrome/installer/util/create_reg_key_work_item.cc index c77092f..4c1eb2c 100644 --- a/chrome/installer/util/create_reg_key_work_item.cc +++ b/chrome/installer/util/create_reg_key_work_item.cc @@ -2,9 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "shlwapi.h" +#include <shlwapi.h> #include "base/file_util.h" +#include "base/logging.h" #include "base/registry.h" #include "chrome/installer/util/create_reg_key_work_item.h" #include "chrome/installer/util/install_util.h" @@ -24,7 +25,7 @@ void UpOneDirectoryOrEmpty(std::wstring* dir) { *dir = directory.ToWStringHack(); } -} // namespace +} // namespace CreateRegKeyWorkItem::~CreateRegKeyWorkItem() { } diff --git a/chrome/installer/util/delete_reg_value_work_item.cc b/chrome/installer/util/delete_reg_value_work_item.cc index 956eb74..7246d52 100644 --- a/chrome/installer/util/delete_reg_value_work_item.cc +++ b/chrome/installer/util/delete_reg_value_work_item.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/installer/util/delete_reg_value_work_item.h" +#include "base/logging.h" #include "base/registry.h" #include "chrome/installer/util/logging_installer.h" diff --git a/chrome/installer/util/helper.cc b/chrome/installer/util/helper.cc index af18e9e..9c0dda9 100644 --- a/chrome/installer/util/helper.cc +++ b/chrome/installer/util/helper.cc @@ -1,10 +1,11 @@ -// 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. #include <windows.h> #include "base/file_util.h" +#include "base/logging.h" #include "base/path_service.h" #include "base/process_util.h" #include "base/scoped_ptr.h" diff --git a/chrome/installer/util/logging_installer.h b/chrome/installer/util/logging_installer.h index 163f315..922de72 100644 --- a/chrome/installer/util/logging_installer.h +++ b/chrome/installer/util/logging_installer.h @@ -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. @@ -6,8 +6,6 @@ #define CHROME_INSTALLER_UTIL_LOGGING_INSTALLER_H_ #pragma once -#include "base/logging.h" - class CommandLine; class FilePath; @@ -22,6 +20,6 @@ void EndInstallerLogging(); // Returns the full path of the log file. FilePath GetLogFilePath(const CommandLine& command_line); -} // namespace installer +} // namespace installer #endif // CHROME_INSTALLER_UTIL_LOGGING_INSTALLER_H_ diff --git a/chrome/installer/util/move_tree_work_item.cc b/chrome/installer/util/move_tree_work_item.cc index 45c03b2..02c25d5 100644 --- a/chrome/installer/util/move_tree_work_item.cc +++ b/chrome/installer/util/move_tree_work_item.cc @@ -1,11 +1,13 @@ -// 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/installer/util/move_tree_work_item.h" #include <shlwapi.h> + #include "base/file_util.h" +#include "base/logging.h" #include "chrome/installer/util/logging_installer.h" MoveTreeWorkItem::~MoveTreeWorkItem() { diff --git a/chrome/installer/util/self_reg_work_item.cc b/chrome/installer/util/self_reg_work_item.cc index 93d5368..6cffdef 100644 --- a/chrome/installer/util/self_reg_work_item.cc +++ b/chrome/installer/util/self_reg_work_item.cc @@ -1,9 +1,10 @@ -// 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. #include "chrome/installer/util/self_reg_work_item.h" +#include "base/logging.h" #include "chrome/installer/util/logging_installer.h" // Default registration export names. diff --git a/chrome/installer/util/set_reg_value_work_item.cc b/chrome/installer/util/set_reg_value_work_item.cc index 74c8d2c..0cf9129 100644 --- a/chrome/installer/util/set_reg_value_work_item.cc +++ b/chrome/installer/util/set_reg_value_work_item.cc @@ -1,9 +1,11 @@ -// 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 "base/registry.h" #include "chrome/installer/util/set_reg_value_work_item.h" + +#include "base/logging.h" +#include "base/registry.h" #include "chrome/installer/util/logging_installer.h" SetRegValueWorkItem::~SetRegValueWorkItem() { diff --git a/chrome/installer/util/work_item_list.cc b/chrome/installer/util/work_item_list.cc index ce3437d..35b4590 100644 --- a/chrome/installer/util/work_item_list.cc +++ b/chrome/installer/util/work_item_list.cc @@ -1,10 +1,12 @@ -// 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/installer/util/logging_installer.h" #include "chrome/installer/util/work_item_list.h" +#include "base/logging.h" +#include "chrome/installer/util/logging_installer.h" + WorkItemList::~WorkItemList() { for (WorkItemIterator itr = list_.begin(); itr != list_.end(); ++itr) { delete (*itr); |