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

Side by Side Diff: chrome/browser/chromeos/system/pointer_device_observer.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/chromeos/system/pointer_device_observer.h" 5 #include "chrome/browser/chromeos/system/pointer_device_observer.h"
6 6
7 #include "base/basictypes.h"
8 #include "base/bind.h" 7 #include "base/bind.h"
9 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
10 #include "chrome/browser/chromeos/system/input_device_settings.h" 9 #include "chrome/browser/chromeos/system/input_device_settings.h"
11 #include "content/public/browser/browser_thread.h" 10 #include "content/public/browser/browser_thread.h"
12 #include "ui/events/devices/device_data_manager.h" 11 #include "ui/events/devices/device_data_manager.h"
13 12
14 using content::BrowserThread; 13 using content::BrowserThread;
15 14
16 namespace chromeos { 15 namespace chromeos {
17 namespace system { 16 namespace system {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 66
68 void PointerDeviceObserver::OnMouseExists(bool exists) { 67 void PointerDeviceObserver::OnMouseExists(bool exists) {
69 FOR_EACH_OBSERVER(Observer, observers_, MouseExists(exists)); 68 FOR_EACH_OBSERVER(Observer, observers_, MouseExists(exists));
70 } 69 }
71 70
72 PointerDeviceObserver::Observer::~Observer() { 71 PointerDeviceObserver::Observer::~Observer() {
73 } 72 }
74 73
75 } // namespace system 74 } // namespace system
76 } // namespace chromeos 75 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/system/pointer_device_observer.h ('k') | chrome/browser/chromeos/system/timezone_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698