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

Unified Diff: chrome/browser/supervised_user/child_accounts/child_account_service.h

Issue 1341423005: ChildAccountService[Java] delegates everything to native side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@child
Patch Set: nits Created 5 years, 3 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: chrome/browser/supervised_user/child_accounts/child_account_service.h
diff --git a/chrome/browser/supervised_user/child_accounts/child_account_service.h b/chrome/browser/supervised_user/child_accounts/child_account_service.h
index ddd830339f48bf40c24097744681659ee4f8f238..ecc91e743bb0eaa24aee5b35aa990b67115f41fd 100644
--- a/chrome/browser/supervised_user/child_accounts/child_account_service.h
+++ b/chrome/browser/supervised_user/child_accounts/child_account_service.h
@@ -46,11 +46,6 @@ class ChildAccountService : public KeyedService,
void Init();
- // Sets whether the signed-in account is a child account.
- // Public so it can be called on platforms where child account detection
- // happens outside of this class (like Android).
- void SetIsChildAccount(bool is_child_account);
-
// Responds whether at least one request for child status was successful.
// And we got answer whether the profile belongs to a child account or not.
bool IsChildAccountStatusKnown();
@@ -69,6 +64,9 @@ class ChildAccountService : public KeyedService,
// SupervisedUserService::Delegate implementation.
bool SetActive(bool active) override;
+ // Sets whether the signed-in account is a child account.
+ void SetIsChildAccount(bool is_child_account);
+
// AccountTrackerService::Observer implementation.
void OnAccountUpdated(const AccountInfo& info) override;

Powered by Google App Engine
This is Rietveld 408576698