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 #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 | |
| OLD | NEW |