Chromium Code Reviews| Index: chromeos/dbus/fake_auth_policy_client.h |
| diff --git a/chromeos/dbus/fake_auth_policy_client.h b/chromeos/dbus/fake_auth_policy_client.h |
| index 3b1b7c1f9b18b6f023955055d0f7e89195abdc53..13cf1eaa8b5c251ae45ac21e6bf48e73c73f2b48 100644 |
| --- a/chromeos/dbus/fake_auth_policy_client.h |
| +++ b/chromeos/dbus/fake_auth_policy_client.h |
| @@ -34,7 +34,10 @@ class CHROMEOS_EXPORT FakeAuthPolicyClient : public AuthPolicyClient { |
| void RefreshUserPolicy(const AccountId& account_id, |
| const RefreshPolicyCallback& callback) override; |
| + void Start() { started = true; } |
|
hashimoto
2017/02/06 04:15:49
Please add a comment to describe what |started_| m
Roman Sorokin (ftl)
2017/02/06 10:30:40
Done.
|
| + |
| private: |
| + bool started = false; |
|
hashimoto
2017/02/06 04:15:49
Please follow the naming rule.
https://google.gith
Roman Sorokin (ftl)
2017/02/06 10:30:40
Done.
|
| DISALLOW_COPY_AND_ASSIGN(FakeAuthPolicyClient); |
| }; |