Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Side by Side Diff: media/base/user_input_monitor_mac.mm

Issue 21183002: Adding key press detection in the browser process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698