OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "blimp/client/core/dummy_blimp_client_context.h" | 5 #include "blimp/client/core/dummy_blimp_client_context.h" |
6 | 6 |
7 #include "base/memory/ref_counted.h" | 7 #include "base/memory/ref_counted.h" |
8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
9 | 9 |
10 #if defined(OS_ANDROID) | 10 #if defined(OS_ANDROID) |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 DummyBlimpClientContext::~DummyBlimpClientContext() {} | 33 DummyBlimpClientContext::~DummyBlimpClientContext() {} |
34 | 34 |
35 void DummyBlimpClientContext::SetDelegate( | 35 void DummyBlimpClientContext::SetDelegate( |
36 BlimpClientContextDelegate* delegate) {} | 36 BlimpClientContextDelegate* delegate) {} |
37 | 37 |
38 std::unique_ptr<BlimpContents> DummyBlimpClientContext::CreateBlimpContents() { | 38 std::unique_ptr<BlimpContents> DummyBlimpClientContext::CreateBlimpContents() { |
39 return nullptr; | 39 return nullptr; |
40 } | 40 } |
41 | 41 |
| 42 void DummyBlimpClientContext::CreateAuthenticator( |
| 43 std::unique_ptr<IdentityProvider> identity_provider) {} |
| 44 |
42 } // namespace client | 45 } // namespace client |
43 } // namespace blimp | 46 } // namespace blimp |
OLD | NEW |