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

Side by Side Diff: components/proximity_auth/screenlock_bridge.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/proximity_auth/screenlock_bridge.h" 5 #include "components/proximity_auth/screenlock_bridge.h"
6 6
7 #include "base/strings/string16.h" 7 #include "base/strings/string16.h"
8 #include "build/build_config.h"
8 #include "components/proximity_auth/logging/logging.h" 9 #include "components/proximity_auth/logging/logging.h"
9 10
10 #if defined(OS_CHROMEOS) 11 #if defined(OS_CHROMEOS)
11 #include "chromeos/dbus/dbus_thread_manager.h" 12 #include "chromeos/dbus/dbus_thread_manager.h"
12 #include "chromeos/dbus/session_manager_client.h" 13 #include "chromeos/dbus/session_manager_client.h"
13 #endif 14 #endif
14 15
15 namespace proximity_auth { 16 namespace proximity_auth {
16 namespace { 17 namespace {
17 18
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 observers_.RemoveObserver(observer); 175 observers_.RemoveObserver(observer);
175 } 176 }
176 177
177 ScreenlockBridge::ScreenlockBridge() 178 ScreenlockBridge::ScreenlockBridge()
178 : lock_handler_(nullptr), focused_account_id_(EmptyAccountId()) {} 179 : lock_handler_(nullptr), focused_account_id_(EmptyAccountId()) {}
179 180
180 ScreenlockBridge::~ScreenlockBridge() { 181 ScreenlockBridge::~ScreenlockBridge() {
181 } 182 }
182 183
183 } // namespace proximity_auth 184 } // namespace proximity_auth
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698