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 #import "ios/web/webui/mojo_facade.h" | 5 #import "ios/web/webui/mojo_facade.h" |
6 | 6 |
7 #import <Foundation/Foundation.h> | 7 #import <Foundation/Foundation.h> |
8 | 8 |
9 #include "base/ios/block_types.h" | 9 #include "base/ios/block_types.h" |
10 #include "base/json/json_reader.h" | 10 #include "base/json/json_reader.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 // Wraps an integer into |base::Value| as |TYPE_INTEGER|. | 28 // Wraps an integer into |base::Value| as |TYPE_INTEGER|. |
29 template <typename IntegerT> | 29 template <typename IntegerT> |
30 std::unique_ptr<base::Value> ValueFromInteger(IntegerT handle) { | 30 std::unique_ptr<base::Value> ValueFromInteger(IntegerT handle) { |
31 return std::unique_ptr<base::Value>( | 31 return std::unique_ptr<base::Value>( |
32 new base::FundamentalValue(static_cast<int>(handle))); | 32 new base::FundamentalValue(static_cast<int>(handle))); |
33 } | 33 } |
34 | 34 |
35 } // namespace | 35 } // namespace |
36 | 36 |
37 MojoFacade::MojoFacade(shell::mojom::InterfaceProvider* interface_provider, | 37 MojoFacade::MojoFacade( |
38 id<CRWJSInjectionEvaluator> script_evaluator) | 38 service_manager::mojom::InterfaceProvider* interface_provider, |
| 39 id<CRWJSInjectionEvaluator> script_evaluator) |
39 : interface_provider_(interface_provider), | 40 : interface_provider_(interface_provider), |
40 script_evaluator_(script_evaluator) { | 41 script_evaluator_(script_evaluator) { |
41 DCHECK_CURRENTLY_ON(WebThread::UI); | 42 DCHECK_CURRENTLY_ON(WebThread::UI); |
42 DCHECK(interface_provider_); | 43 DCHECK(interface_provider_); |
43 DCHECK(script_evaluator_); | 44 DCHECK(script_evaluator_); |
44 } | 45 } |
45 | 46 |
46 MojoFacade::~MojoFacade() { | 47 MojoFacade::~MojoFacade() { |
47 DCHECK_CURRENTLY_ON(WebThread::UI); | 48 DCHECK_CURRENTLY_ON(WebThread::UI); |
48 } | 49 } |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 | 263 |
263 std::unique_ptr<base::Value> MojoFacade::HandleSupportCancelWatch( | 264 std::unique_ptr<base::Value> MojoFacade::HandleSupportCancelWatch( |
264 const base::DictionaryValue* args) { | 265 const base::DictionaryValue* args) { |
265 int watch_id = 0; | 266 int watch_id = 0; |
266 CHECK(args->GetInteger("watchId", &watch_id)); | 267 CHECK(args->GetInteger("watchId", &watch_id)); |
267 watchers_.erase(watch_id); | 268 watchers_.erase(watch_id); |
268 return nullptr; | 269 return nullptr; |
269 } | 270 } |
270 | 271 |
271 } // namespace web | 272 } // namespace web |
OLD | NEW |