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

Side by Side Diff: blimp/client/support/session/blimp_default_identity_provider.cc

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 years, 11 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 #include "blimp/client/support/session/blimp_default_identity_provider.h"
6
7 #include "google_apis/gaia/oauth2_token_service.h"
8
9 namespace blimp {
10 namespace client {
11 namespace {
12 constexpr char kDummyAccountId[] = "DummyAccountId";
13 } // namespace
14
15 BlimpDefaultIdentityProvider::BlimpDefaultIdentityProvider() = default;
16
17 BlimpDefaultIdentityProvider::~BlimpDefaultIdentityProvider() = default;
18
19 std::string BlimpDefaultIdentityProvider::GetActiveUsername() {
20 return kDummyAccountId;
21 }
22
23 std::string BlimpDefaultIdentityProvider::GetActiveAccountId() {
24 return kDummyAccountId;
25 }
26
27 OAuth2TokenService* BlimpDefaultIdentityProvider::GetTokenService() {
28 return nullptr;
29 }
30
31 bool BlimpDefaultIdentityProvider::RequestLogin() {
32 return false;
33 }
34
35 } // namespace client
36 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/client/support/session/blimp_default_identity_provider.h ('k') | blimp/client/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698