| 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/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/single_thread_task_runner.h" | 9 #include "base/single_thread_task_runner.h" |
| 10 #include "blimp/client/public/compositor/compositor_dependencies.h" | 10 #include "blimp/client/public/compositor/compositor_dependencies.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #endif // defined(OS_ANDROID) | 32 #endif // defined(OS_ANDROID) |
| 33 } | 33 } |
| 34 | 34 |
| 35 DummyBlimpClientContext::DummyBlimpClientContext() : BlimpClientContext() {} | 35 DummyBlimpClientContext::DummyBlimpClientContext() : BlimpClientContext() {} |
| 36 | 36 |
| 37 DummyBlimpClientContext::~DummyBlimpClientContext() {} | 37 DummyBlimpClientContext::~DummyBlimpClientContext() {} |
| 38 | 38 |
| 39 void DummyBlimpClientContext::SetDelegate( | 39 void DummyBlimpClientContext::SetDelegate( |
| 40 BlimpClientContextDelegate* delegate) {} | 40 BlimpClientContextDelegate* delegate) {} |
| 41 | 41 |
| 42 std::unique_ptr<BlimpContents> DummyBlimpClientContext::CreateBlimpContents() { | 42 std::unique_ptr<BlimpContents> DummyBlimpClientContext::CreateBlimpContents( |
| 43 gfx::NativeWindow window) { |
| 43 return nullptr; | 44 return nullptr; |
| 44 } | 45 } |
| 45 | 46 |
| 46 void DummyBlimpClientContext::Connect() { | 47 void DummyBlimpClientContext::Connect() { |
| 47 NOTREACHED(); | 48 NOTREACHED(); |
| 48 } | 49 } |
| 49 | 50 |
| 50 } // namespace client | 51 } // namespace client |
| 51 } // namespace blimp | 52 } // namespace blimp |
| OLD | NEW |