Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 "content/browser/keyboard_lock/keyboard_lock_service_impl.h" | |
| 6 | |
| 7 #include "content/public/browser/render_frame_host.h" | |
| 8 | |
| 9 namespace content { | |
| 10 | |
| 11 KeyboardLockServiceImpl::KeyboardLockServiceImpl() = default; | |
| 12 KeyboardLockServiceImpl::~KeyboardLockServiceImpl() = default; | |
| 13 | |
| 14 // static | |
| 15 void KeyboardLockServiceImpl::CreateMojoService( | |
| 16 RenderFrameHost* render_frame_host, | |
| 17 blink::mojom::KeyboardLockServiceRequest request) { | |
| 18 KeyboardLockServiceImpl* impl = new KeyboardLockServiceImpl(); | |
| 19 impl->binding_.reset(new mojo::Binding<blink::mojom::KeyboardLockService>( | |
|
dcheng
2017/04/17 23:07:52
Then here, you can call Bind(std::move(request))
Hzj_jie
2017/04/18 02:26:07
If the last sentence before this "Then here" is in
| |
| 20 impl, std::move(request))); | |
| 21 } | |
| 22 | |
| 23 void KeyboardLockServiceImpl::RequestKeyLock( | |
| 24 const std::vector<std::string>& key_codes, | |
| 25 const RequestKeyLockCallback& callback) { | |
| 26 // TODO(zijiehe): Implementation required. | |
|
dcheng
2017/04/17 23:07:52
Usually it's preferable not to land Mojo stubs--th
Hzj_jie
2017/04/18 02:26:07
I can surely do it, but AFAICT, this may not work
| |
| 27 callback.Run(true, std::string()); | |
| 28 } | |
| 29 | |
| 30 void KeyboardLockServiceImpl::CancelKeyLock( | |
| 31 const CancelKeyLockCallback& callback) { | |
| 32 // TODO(zijiehe): Implementation required. | |
| 33 callback.Run(); | |
| 34 } | |
| 35 | |
| 36 } // namespace content | |
| OLD | NEW |