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

Side by Side Diff: chrome/browser/chromeos/policy/user_cloud_policy_manager_factory_chromeos.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_FACTORY_CHROMEO S_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_FACTORY_CHROMEO S_H_
6 #define CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_FACTORY_CHROMEO S_H_ 6 #define CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_FACTORY_CHROMEO S_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 69
70 // See comments for the static versions above. 70 // See comments for the static versions above.
71 UserCloudPolicyManagerChromeOS* GetManagerForProfile(Profile* profile); 71 UserCloudPolicyManagerChromeOS* GetManagerForProfile(Profile* profile);
72 scoped_ptr<UserCloudPolicyManagerChromeOS> CreateManagerForProfile( 72 scoped_ptr<UserCloudPolicyManagerChromeOS> CreateManagerForProfile(
73 Profile* profile, 73 Profile* profile,
74 bool force_immediate_load, 74 bool force_immediate_load,
75 scoped_refptr<base::SequencedTaskRunner> background_task_runner); 75 scoped_refptr<base::SequencedTaskRunner> background_task_runner);
76 76
77 // BrowserContextKeyedBaseFactory: 77 // BrowserContextKeyedBaseFactory:
78 virtual void BrowserContextShutdown( 78 virtual void BrowserContextShutdown(
79 content::BrowserContext* context) OVERRIDE; 79 content::BrowserContext* context) override;
80 virtual void BrowserContextDestroyed( 80 virtual void BrowserContextDestroyed(
81 content::BrowserContext* context) OVERRIDE; 81 content::BrowserContext* context) override;
82 virtual void SetEmptyTestingFactory( 82 virtual void SetEmptyTestingFactory(
83 content::BrowserContext* context) OVERRIDE; 83 content::BrowserContext* context) override;
84 virtual bool HasTestingFactory(content::BrowserContext* context) OVERRIDE; 84 virtual bool HasTestingFactory(content::BrowserContext* context) override;
85 virtual void CreateServiceNow(content::BrowserContext* context) OVERRIDE; 85 virtual void CreateServiceNow(content::BrowserContext* context) override;
86 86
87 typedef std::map<Profile*, UserCloudPolicyManagerChromeOS*> ManagerMap; 87 typedef std::map<Profile*, UserCloudPolicyManagerChromeOS*> ManagerMap;
88 ManagerMap managers_; 88 ManagerMap managers_;
89 89
90 DISALLOW_COPY_AND_ASSIGN(UserCloudPolicyManagerFactoryChromeOS); 90 DISALLOW_COPY_AND_ASSIGN(UserCloudPolicyManagerFactoryChromeOS);
91 }; 91 };
92 92
93 } // namespace policy 93 } // namespace policy
94 94
95 #endif // CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_FACTORY_CHRO MEOS_H_ 95 #endif // CHROME_BROWSER_CHROMEOS_POLICY_USER_CLOUD_POLICY_MANAGER_FACTORY_CHRO MEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698