| Index: blimp/client/core/context/dummy_blimp_client_context.cc
|
| diff --git a/blimp/client/core/context/dummy_blimp_client_context.cc b/blimp/client/core/context/dummy_blimp_client_context.cc
|
| index 9bebbb8570f54e7fd3487592271ad6d4a61c1d31..892678f231045edce73648ddc69ae7043f05de78 100644
|
| --- a/blimp/client/core/context/dummy_blimp_client_context.cc
|
| +++ b/blimp/client/core/context/dummy_blimp_client_context.cc
|
| @@ -25,7 +25,8 @@ namespace client {
|
| BlimpClientContext* BlimpClientContext::Create(
|
| scoped_refptr<base::SingleThreadTaskRunner> io_thread_task_runner,
|
| scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner,
|
| - std::unique_ptr<CompositorDependencies> compositor_dependencies) {
|
| + std::unique_ptr<CompositorDependencies> compositor_dependencies,
|
| + PrefService* local_state) {
|
| #if defined(OS_ANDROID)
|
| return new DummyBlimpClientContextAndroid();
|
| #else
|
| @@ -33,6 +34,20 @@ BlimpClientContext* BlimpClientContext::Create(
|
| #endif // defined(OS_ANDROID)
|
| }
|
|
|
| +// This function is declared in //blimp/client/public/blimp_client_context.h,
|
| +// and either this function or the one in
|
| +// //blimp/client/core/blimp_client_context_impl.cc should be linked in to
|
| +// any binary using BlimpClientContext::RegisterPrefs.
|
| +// static
|
| +void BlimpClientContext::RegisterPrefs(PrefRegistrySimple* registry) {}
|
| +
|
| +// This function is declared in //blimp/client/public/blimp_client_context.h,
|
| +// and either this function or the one in
|
| +// //blimp/client/core/blimp_client_context_impl.cc should be linked in to
|
| +// any binary using BlimpClientContext::ApplyBlimpSwitches.
|
| +// static
|
| +void BlimpClientContext::ApplyBlimpSwitches(CommandLinePrefStore* store) {}
|
| +
|
| DummyBlimpClientContext::DummyBlimpClientContext() : BlimpClientContext() {
|
| UMA_HISTOGRAM_BOOLEAN("Blimp.Supported", false);
|
| }
|
|
|