OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "sky/shell/service_provider.h" | |
6 | |
7 #include "base/single_thread_task_runner.h" | |
8 | |
9 namespace sky { | |
10 namespace shell { | |
11 | |
12 ServiceProviderContext::ServiceProviderContext( | |
13 scoped_refptr<base::SingleThreadTaskRunner> runner) | |
14 : platform_task_runner(runner.Pass()) {} | |
15 | |
16 ServiceProviderContext::~ServiceProviderContext() { | |
17 } | |
18 | |
19 } // namespace shell | |
20 } // namespace sky | |
OLD | NEW |