OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // CEEE module-wide utilities. | 5 // CEEE module-wide utilities. |
6 | 6 |
7 #ifndef CEEE_IE_COMMON_TOOLBAND_MODULE_UTIL_H__ | 7 #ifndef CEEE_IE_COMMON_TOOLBAND_MODULE_UTIL_H__ |
8 #define CEEE_IE_COMMON_TOOLBAND_MODULE_UTIL_H__ | 8 #define CEEE_IE_COMMON_TOOLBAND_MODULE_UTIL_H__ |
9 | 9 |
10 #include <wtypes.h> | 10 #include <wtypes.h> |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 96 |
97 // The name of the profile that is used by the Firefox CEEE. | 97 // The name of the profile that is used by the Firefox CEEE. |
98 extern const wchar_t kChromeProfileNameForFirefox[]; | 98 extern const wchar_t kChromeProfileNameForFirefox[]; |
99 | 99 |
100 // The name of the Internet Explorer executable. | 100 // The name of the Internet Explorer executable. |
101 extern const wchar_t kInternetExplorerModuleName[]; | 101 extern const wchar_t kInternetExplorerModuleName[]; |
102 | 102 |
103 // The name of the CEEE Broker executable. | 103 // The name of the CEEE Broker executable. |
104 extern const wchar_t kCeeeBrokerModuleName[]; | 104 extern const wchar_t kCeeeBrokerModuleName[]; |
105 | 105 |
| 106 // Refreshes elevation policy. Returns false if refresh was not needed. |
| 107 bool RefreshElevationPolicyIfNeeded(); |
| 108 |
106 } // namespace | 109 } // namespace |
107 | 110 |
108 #endif // CEEE_IE_COMMON_TOOLBAND_MODULE_UTIL_H__ | 111 #endif // CEEE_IE_COMMON_TOOLBAND_MODULE_UTIL_H__ |
OLD | NEW |