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/context/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/metrics/histogram_macros.h" | 9 #include "base/metrics/histogram_macros.h" |
10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
11 #include "blimp/client/public/compositor/compositor_dependencies.h" | 11 #include "blimp/client/public/compositor/compositor_dependencies.h" |
12 | 12 |
13 #if defined(OS_ANDROID) | 13 #if defined(OS_ANDROID) |
14 #include "blimp/client/core/android/dummy_blimp_client_context_android.h" | 14 #include "blimp/client/core/context/android/dummy_blimp_client_context_android.h
" |
15 #endif // OS_ANDROID | 15 #endif // OS_ANDROID |
16 | 16 |
17 namespace blimp { | 17 namespace blimp { |
18 namespace client { | 18 namespace client { |
19 | 19 |
20 // This function is declared in //blimp/client/public/blimp_client_context.h, | 20 // This function is declared in //blimp/client/public/blimp_client_context.h, |
21 // and either this function or the one in | 21 // and either this function or the one in |
22 // //blimp/client/core/blimp_client_context_impl.cc should be linked in to | 22 // //blimp/client/core/blimp_client_context_impl.cc should be linked in to |
23 // any binary using BlimpClientContext::Create. | 23 // any binary using BlimpClientContext::Create. |
24 // static | 24 // static |
(...skipping 26 matching lines...) Expand all Loading... |
51 NOTREACHED(); | 51 NOTREACHED(); |
52 } | 52 } |
53 | 53 |
54 void DummyBlimpClientContext::ConnectWithAssignment( | 54 void DummyBlimpClientContext::ConnectWithAssignment( |
55 const Assignment& assignment) { | 55 const Assignment& assignment) { |
56 NOTREACHED(); | 56 NOTREACHED(); |
57 } | 57 } |
58 | 58 |
59 } // namespace client | 59 } // namespace client |
60 } // namespace blimp | 60 } // namespace blimp |
OLD | NEW |