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

Unified Diff: chrome/browser/google/google_update.cc

Issue 6825055: Include base/win/scoped_comptr.h instead of base/scoped_comptr_win.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert bad indentation, rebase Created 9 years, 8 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 | « chrome/browser/first_run/first_run_win.cc ('k') | chrome/browser/history/history_publisher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/google/google_update.cc
diff --git a/chrome/browser/google/google_update.cc b/chrome/browser/google/google_update.cc
index feff84ccb9b27894aea8cc57293da2d67c02806d..06d6591913bc7506140ba3e2b2ae4c004ab0de92 100644
--- a/chrome/browser/google/google_update.cc
+++ b/chrome/browser/google/google_update.cc
@@ -10,19 +10,19 @@
#include "base/file_path.h"
#include "base/message_loop.h"
#include "base/path_service.h"
-#include "base/scoped_comptr_win.h"
#include "base/string_util.h"
#include "base/task.h"
#include "base/threading/thread.h"
#include "base/win/registry.h"
+#include "base/win/scoped_comptr.h"
#include "base/win/windows_version.h"
#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/google_update_constants.h"
#include "chrome/installer/util/helper.h"
#include "chrome/installer/util/install_util.h"
#include "content/browser/browser_thread.h"
-#include "views/window/window.h"
#include "google_update_idl_i.c"
+#include "views/window/window.h"
using views::Window;
@@ -235,7 +235,7 @@ class GoogleUpdateJobObserver
// Allows us control the upgrade process to a small degree. After OnComplete
// has been called, this object can not be used.
- ScopedComPtr<IProgressWndEvents> event_sink_;
+ base::win::ScopedComPtr<IProgressWndEvents> event_sink_;
};
////////////////////////////////////////////////////////////////////////////////
@@ -292,9 +292,9 @@ bool GoogleUpdate::InitiateGoogleUpdateCheck(bool install_if_newer,
main_loop);
}
- ScopedComPtr<IJobObserver> job_holder(job_observer);
+ base::win::ScopedComPtr<IJobObserver> job_holder(job_observer);
- ScopedComPtr<IGoogleUpdate> on_demand;
+ base::win::ScopedComPtr<IGoogleUpdate> on_demand;
bool system_level = false;
« no previous file with comments | « chrome/browser/first_run/first_run_win.cc ('k') | chrome/browser/history/history_publisher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698