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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: blimp/client/core/blimp_client_context_internal.h
diff --git a/blimp/client/core/blimp_client_context_internal.h b/blimp/client/core/blimp_client_context_internal.h
new file mode 100644
index 0000000000000000000000000000000000000000..9b394f424f779663bd4d594ab6d4b793cded520c
--- /dev/null
+++ b/blimp/client/core/blimp_client_context_internal.h
@@ -0,0 +1,25 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_INTERNAL_H_
+#define BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_INTERNAL_H_
+
+#include "base/macros.h"
+#include "blimp/client/core/session/identity_source.h"
+
+namespace blimp {
+namespace client {
+
+// BlimpClientInternal is a Blimp internal interface used for decoupling
+// internal build components from blimp/client/core/context build target.
+// This interface can depends on any Blimp targets except context.
+class BlimpClientContextInternal {
+ public:
+ 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
+};
+
+} // namespace client
+} // namespace blimp
+
+#endif // BLIMP_CLIENT_CORE_BLIMP_CLIENT_CONTEXT_INTERNAL_H_

Powered by Google App Engine
This is Rietveld 408576698