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

Side by Side Diff: blimp/client/app/linux/blimp_client_context_delegate_linux.cc

Issue 2363153002: Migrate Linux Blimp client to use BlimpClientContext (Closed)
Patch Set: Move compositor creation into display manager. Pull out BlimpDisplayManagerDelegateMain class from … Created 4 years, 2 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 "base/memory/ptr_util.h"
6 #include "blimp/client/app/linux/blimp_client_context_delegate_linux.h"
7 #include "blimp/client/support/session/blimp_default_identity_provider.h"
8
9 namespace blimp {
10 namespace client {
11
12 BlimpClientContextDelegateLinux::BlimpClientContextDelegateLinux() {}
13
14 BlimpClientContextDelegateLinux::~BlimpClientContextDelegateLinux() = default;
15
16 void BlimpClientContextDelegateLinux::AttachBlimpContentsHelpers(
17 BlimpContents* blimp_contents) {}
18
19 void BlimpClientContextDelegateLinux::OnAssignmentConnectionAttempted(
20 AssignmentRequestResult result,
21 const Assignment& assignment) {}
David Trainor- moved to gerrit 2016/09/26 20:54:26 Should this log some information about the connect
steimel 2016/09/27 17:35:00 Done.
22
23 std::unique_ptr<IdentityProvider>
24 BlimpClientContextDelegateLinux::CreateIdentityProvider() {
25 return base::MakeUnique<BlimpDefaultIdentityProvider>();
26 }
27
28 void BlimpClientContextDelegateLinux::OnAuthenticationError(
29 BlimpClientContextDelegate::AuthError error) {}
30
31 } // namespace client
32 } // namespace blimp
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698