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

Side by Side Diff: components/policy/core/common/policy_provider_android.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_POLICY_CORE_COMMON_POLICY_PROVIDER_ANDROID_H_ 5 #ifndef COMPONENTS_POLICY_CORE_COMMON_POLICY_PROVIDER_ANDROID_H_
6 #define COMPONENTS_POLICY_CORE_COMMON_POLICY_PROVIDER_ANDROID_H_ 6 #define COMPONENTS_POLICY_CORE_COMMON_POLICY_PROVIDER_ANDROID_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "components/policy/core/common/configuration_policy_provider.h" 10 #include "components/policy/core/common/configuration_policy_provider.h"
(...skipping 15 matching lines...) Expand all
26 // been called at least once, otherwise it will return true immediately. 26 // been called at least once, otherwise it will return true immediately.
27 static void SetShouldWaitForPolicy(bool should_wait_for_policy); 27 static void SetShouldWaitForPolicy(bool should_wait_for_policy);
28 28
29 // Returns the schema for Chrome policies. 29 // Returns the schema for Chrome policies.
30 const Schema* GetChromeSchema() const; 30 const Schema* GetChromeSchema() const;
31 31
32 void SetDelegate(PolicyProviderAndroidDelegate* delegate); 32 void SetDelegate(PolicyProviderAndroidDelegate* delegate);
33 void SetPolicies(scoped_ptr<PolicyBundle> policy); 33 void SetPolicies(scoped_ptr<PolicyBundle> policy);
34 34
35 // ConfigurationPolicyProvider: 35 // ConfigurationPolicyProvider:
36 virtual void Shutdown() OVERRIDE; 36 virtual void Shutdown() override;
37 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE; 37 virtual bool IsInitializationComplete(PolicyDomain domain) const override;
38 virtual void RefreshPolicies() OVERRIDE; 38 virtual void RefreshPolicies() override;
39 39
40 private: 40 private:
41 PolicyProviderAndroidDelegate* delegate_; 41 PolicyProviderAndroidDelegate* delegate_;
42 bool initialized_; 42 bool initialized_;
43 43
44 DISALLOW_COPY_AND_ASSIGN(PolicyProviderAndroid); 44 DISALLOW_COPY_AND_ASSIGN(PolicyProviderAndroid);
45 }; 45 };
46 46
47 } // namespace policy 47 } // namespace policy
48 48
49 #endif // COMPONENTS_POLICY_CORE_COMMON_POLICY_PROVIDER_ANDROID_H_ 49 #endif // COMPONENTS_POLICY_CORE_COMMON_POLICY_PROVIDER_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698