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

Unified Diff: chrome/browser/policy/configuration_policy_loader_win.h

Issue 5971008: move base/object_watcher into base/win and add the win namespace. Fixup calle... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 12 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/common/process_watcher_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/configuration_policy_loader_win.h
===================================================================
--- chrome/browser/policy/configuration_policy_loader_win.h (revision 70358)
+++ chrome/browser/policy/configuration_policy_loader_win.h (working copy)
@@ -6,8 +6,8 @@
#define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_LOADER_WIN_H_
#pragma once
-#include "base/object_watcher.h"
#include "base/waitable_event.h"
+#include "base/win/object_watcher.h"
#include "chrome/browser/policy/asynchronous_policy_loader.h"
namespace policy {
@@ -16,7 +16,7 @@
// reload when Group Policy changes.
class ConfigurationPolicyLoaderWin
: public AsynchronousPolicyLoader,
- public base::ObjectWatcher::Delegate,
+ public base::win::ObjectWatcher::Delegate,
public MessageLoop::DestructionObserver {
public:
ConfigurationPolicyLoaderWin(
@@ -44,8 +44,8 @@
base::WaitableEvent user_policy_changed_event_;
base::WaitableEvent machine_policy_changed_event_;
- base::ObjectWatcher user_policy_watcher_;
- base::ObjectWatcher machine_policy_watcher_;
+ base::win::ObjectWatcher user_policy_watcher_;
+ base::win::ObjectWatcher machine_policy_watcher_;
bool user_policy_watcher_failed_;
bool machine_policy_watcher_failed_;
« no previous file with comments | « chrome/browser/first_run/first_run_win.cc ('k') | chrome/common/process_watcher_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698