Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
|
Sergey Ulanov
2013/08/08 01:25:48
nit: Lawyercat says you don't need (c). http://www
| |
| 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 "media/base/user_input_monitor.h" | |
| 6 | |
| 7 namespace media { | |
| 8 | |
| 9 scoped_ptr<UserInputMonitor> UserInputMonitor::Create( | |
| 10 const scoped_refptr<base::SingleThreadTaskRunner>& input_task_runner, | |
| 11 const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner, | |
| 12 const scoped_refptr<base::SingleThreadTaskRunner>& observer_task_runner, | |
| 13 uint8 input_event_mask, | |
| 14 const base::WeakPtr<UserInputObserver>& observer) { | |
| 15 return scoped_ptr<UserInputMonitor>(NULL); | |
|
Sergey Ulanov
2013/08/08 01:25:48
nit: remove NULL.
nit: add TODO to implement this?
| |
| 16 } | |
| 17 | |
| 18 } // namespace media | |
| OLD | NEW |