Chromium Code Reviews| 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 BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_INTERNAL_H_ | |
| 6 #define BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_INTERNAL_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "blimp/client/core/session/identity_source.h" | |
| 10 | |
| 11 namespace blimp { | |
| 12 namespace client { | |
| 13 | |
| 14 // BlimpClientInternal is a Blimp internal interface used for decoupling | |
| 15 // internal build components from blimp/client/core/context build target. | |
| 16 // This interface can depends on any Blimp targets except context. | |
| 17 class BlimpClientContextInternal { | |
| 18 public: | |
| 19 virtual IdentitySource* GetIdentitySource() = 0; | |
|
David Trainor- moved to gerrit
2016/08/29 05:12:24
This looks like it's only implemented on Android,
xingliu
2016/08/30 04:47:42
Done, sorry this is my bad, I've done it in Java s
| |
| 20 }; | |
| 21 | |
| 22 } // namespace client | |
| 23 } // namespace blimp | |
| 24 | |
| 25 #endif // BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_INTERNAL_H_ | |
| OLD | NEW |