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

Unified Diff: components/supervised_user_error_page/supervised_user_error_page.h

Issue 1808653003: Move the supervised user error page to a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/supervised_user_error_page/supervised_user_error_page.h
diff --git a/components/supervised_user_error_page/supervised_user_error_page.h b/components/supervised_user_error_page/supervised_user_error_page.h
new file mode 100644
index 0000000000000000000000000000000000000000..771dd79df8ab3047d59ec90a17e79c3a22917275
--- /dev/null
+++ b/components/supervised_user_error_page/supervised_user_error_page.h
@@ -0,0 +1,41 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_SUPERVISED_USER_ERROR_PAGE_SUPERVISED_USER_ERROR_PAGE_H_
+#define COMPONENTS_SUPERVISED_USER_ERROR_PAGE_SUPERVISED_USER_ERROR_PAGE_H_
+
+#include <string>
+
+#include "base/strings/string16.h"
+
+namespace supervised_user_error_page {
+
+enum FilteringBehaviorReason {
+ DEFAULT,
+ ASYNC_CHECKER,
+ BLACKLIST,
+ MANUAL,
+ WHITELIST
+};
+
+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
+ supervised_user_error_page::FilteringBehaviorReason reason,
+ bool is_child_account,
+ bool single_parent);
+
+extern std::string BuildHtml(bool allow_access_requests,
+ const std::string& profile_image_url,
+ const std::string& profile_image_url2,
+ const base::string16& custodian,
+ const base::string16& custodian_email,
+ const base::string16& second_custodian,
+ const base::string16& second_custodian_email,
+ bool is_child_account,
+ FilteringBehaviorReason reason,
+ const std::string& app_locale);
+
+} // namespace supervised_user_error_page
+
+#endif /* COMPONENTS_SUPERVISED_USER_ERROR_PAGE_SUPERVISED_USER_ERROR_PAGE_H_ \
+ */

Powered by Google App Engine
This is Rietveld 408576698