OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef COMPONENTS_SUPERVISED_USER_ERROR_PAGE_SUPERVISED_USER_ERROR_PAGE_H_ | |
6 #define COMPONENTS_SUPERVISED_USER_ERROR_PAGE_SUPERVISED_USER_ERROR_PAGE_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/strings/string16.h" | |
11 | |
12 namespace supervised_user_error_page { | |
13 | |
14 enum FilteringBehaviorReason { | |
15 DEFAULT, | |
16 ASYNC_CHECKER, | |
17 BLACKLIST, | |
18 MANUAL, | |
19 WHITELIST | |
20 }; | |
21 | |
22 extern int GetBlockMessageID( | |
Bernhard Bauer
2016/03/16 13:59:45
Why extern? Do you need to export this for a compo
aberent
2016/03/16 16:06:41
I think my C++ just went back 20 years! Some linke
Bernhard Bauer
2016/03/16 17:12:27
Yes, these days only constants get internal linkag
| |
23 supervised_user_error_page::FilteringBehaviorReason reason, | |
24 bool is_child_account, | |
25 bool single_parent); | |
26 | |
27 extern std::string BuildHtml(bool allow_access_requests, | |
28 const std::string& profile_image_url, | |
29 const std::string& profile_image_url2, | |
30 const base::string16& custodian, | |
31 const base::string16& custodian_email, | |
32 const base::string16& second_custodian, | |
33 const base::string16& second_custodian_email, | |
34 bool is_child_account, | |
35 FilteringBehaviorReason reason, | |
36 const std::string& app_locale); | |
37 | |
38 } // namespace supervised_user_error_page | |
39 | |
40 #endif /* COMPONENTS_SUPERVISED_USER_ERROR_PAGE_SUPERVISED_USER_ERROR_PAGE_H_ \ | |
41 */ | |
OLD | NEW |