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

Unified Diff: components/policy/core/common/policy_loader_win.h

Issue 1056633004: Update {virtual,override} to follow C++11 style in components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix logo tracker unittest. Created 5 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
Index: components/policy/core/common/policy_loader_win.h
diff --git a/components/policy/core/common/policy_loader_win.h b/components/policy/core/common/policy_loader_win.h
index bbcf5b0f1fc8043be8178e8013e16a18d91b663d..93be1f5fb2c7c3ccaa95b0708413ec55d55c1558 100644
--- a/components/policy/core/common/policy_loader_win.h
+++ b/components/policy/core/common/policy_loader_win.h
@@ -57,7 +57,7 @@ class POLICY_EXPORT PolicyLoaderWin
PolicyLoaderWin(scoped_refptr<base::SequencedTaskRunner> task_runner,
const base::string16& chrome_policy_key,
AppliedGPOListProvider* gpo_provider);
- virtual ~PolicyLoaderWin();
+ ~PolicyLoaderWin() override;
// Creates a policy loader that uses the Win API to access GPO.
static scoped_ptr<PolicyLoaderWin> Create(
@@ -65,8 +65,8 @@ class POLICY_EXPORT PolicyLoaderWin
const base::string16& chrome_policy_key);
// AsyncPolicyLoader implementation.
- virtual void InitOnBackgroundThread() override;
- virtual scoped_ptr<PolicyBundle> Load() override;
+ void InitOnBackgroundThread() override;
+ scoped_ptr<PolicyBundle> Load() override;
private:
// Reads Chrome Policy from a PReg file at the given path and stores the
@@ -107,7 +107,7 @@ class POLICY_EXPORT PolicyLoaderWin
void SetupWatches();
// ObjectWatcher::Delegate overrides:
- virtual void OnObjectSignaled(HANDLE object) override;
+ void OnObjectSignaled(HANDLE object) override;
bool is_initialized_;
const base::string16 chrome_policy_key_;
« no previous file with comments | « components/policy/core/common/cloud/policy_builder.h ('k') | components/policy/core/common/policy_loader_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698