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

Side by Side Diff: blimp/client/core/blimp_client_context_internal.h

Issue 2261273002: Integrate UI with authentication flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Misc fix. Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698