Chromium Code Reviews| Index: blimp/client/app/linux/blimp_client_context_delegate_linux.h |
| diff --git a/blimp/client/app/linux/blimp_client_context_delegate_linux.h b/blimp/client/app/linux/blimp_client_context_delegate_linux.h |
| index d781e86752eb6cd2ab64dba8cd0d1ab8db62eab7..1dadd91db6c23464dad957c2994fe656e9b61f11 100644 |
| --- a/blimp/client/app/linux/blimp_client_context_delegate_linux.h |
| +++ b/blimp/client/app/linux/blimp_client_context_delegate_linux.h |
| @@ -8,6 +8,11 @@ |
| #include "blimp/client/public/blimp_client_context_delegate.h" |
| #include "google_apis/gaia/identity_provider.h" |
| +namespace user_prefs { |
| +class PrefRegistrySyncable; |
| +} |
|
David Trainor- moved to gerrit
2016/10/26 01:14:54
// namespace user_prefs
Menglin
2016/10/26 01:46:21
Done.
|
| +class PrefService; |
|
David Trainor- moved to gerrit
2016/10/26 01:14:54
new line before this
Menglin
2016/10/26 01:46:22
Done.
|
| + |
| namespace blimp { |
| namespace client { |
| @@ -28,7 +33,12 @@ class BlimpClientContextDelegateLinux : public BlimpClientContextDelegate { |
| void OnEngineDisconnected(int result) override; |
| void OnNetworkDisconnected(int result) override; |
| + PrefService* pref_service() { return pref_service_.get(); } |
| + |
| private: |
| + scoped_refptr<user_prefs::PrefRegistrySyncable> pref_registry_; |
| + std::unique_ptr<PrefService> pref_service_; |
|
David Trainor- moved to gerrit
2016/10/26 01:14:55
Can these just be members in the linux blimp_main
Menglin
2016/10/26 01:46:22
Done.
|
| + |
| DISALLOW_COPY_AND_ASSIGN(BlimpClientContextDelegateLinux); |
| }; |