Chromium Code Reviews| Index: blimp/client/app/linux/blimp_client_context_delegate_linux.cc |
| diff --git a/blimp/client/app/linux/blimp_client_context_delegate_linux.cc b/blimp/client/app/linux/blimp_client_context_delegate_linux.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..661553c5b1dadcd8ad9168ea7d7aa3a98d39d8cb |
| --- /dev/null |
| +++ b/blimp/client/app/linux/blimp_client_context_delegate_linux.cc |
| @@ -0,0 +1,32 @@ |
| +// 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. |
| + |
| +#include "base/memory/ptr_util.h" |
| +#include "blimp/client/app/linux/blimp_client_context_delegate_linux.h" |
| +#include "blimp/client/support/session/blimp_default_identity_provider.h" |
| + |
| +namespace blimp { |
| +namespace client { |
| + |
| +BlimpClientContextDelegateLinux::BlimpClientContextDelegateLinux() {} |
| + |
| +BlimpClientContextDelegateLinux::~BlimpClientContextDelegateLinux() = default; |
| + |
| +void BlimpClientContextDelegateLinux::AttachBlimpContentsHelpers( |
| + BlimpContents* blimp_contents) {} |
| + |
| +void BlimpClientContextDelegateLinux::OnAssignmentConnectionAttempted( |
| + AssignmentRequestResult result, |
| + 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.
|
| + |
| +std::unique_ptr<IdentityProvider> |
| +BlimpClientContextDelegateLinux::CreateIdentityProvider() { |
| + return base::MakeUnique<BlimpDefaultIdentityProvider>(); |
| +} |
| + |
| +void BlimpClientContextDelegateLinux::OnAuthenticationError( |
| + BlimpClientContextDelegate::AuthError error) {} |
| + |
| +} // namespace client |
| +} // namespace blimp |