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

Side by Side Diff: chrome/browser/signin/easy_unlock_auth_attempt_unittest.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/signin/easy_unlock_auth_attempt.h" 5 #include "chrome/browser/signin/easy_unlock_auth_attempt.h"
6 6
7 #include <stddef.h>
8
7 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "build/build_config.h"
8 #include "chrome/browser/signin/easy_unlock_app_manager.h" 11 #include "chrome/browser/signin/easy_unlock_app_manager.h"
9 #include "components/proximity_auth/screenlock_bridge.h" 12 #include "components/proximity_auth/screenlock_bridge.h"
10 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
11 14
12 #if defined(OS_CHROMEOS) 15 #if defined(OS_CHROMEOS)
13 #include "chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.h" 16 #include "chrome/browser/chromeos/login/easy_unlock/easy_unlock_key_manager.h"
14 #endif 17 #endif
15 18
16 namespace { 19 namespace {
17 20
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 EXPECT_EQ(TestLockHandler::STATE_ATTEMPTING_SIGNIN, lock_handler_->state()); 563 EXPECT_EQ(TestLockHandler::STATE_ATTEMPTING_SIGNIN, lock_handler_->state());
561 564
562 auth_attempt_->FinalizeSignin(test_account_id1_, GetWrappedSecret(), 565 auth_attempt_->FinalizeSignin(test_account_id1_, GetWrappedSecret(),
563 GetSessionKey()); 566 GetSessionKey());
564 567
565 EXPECT_EQ(TestLockHandler::STATE_SIGNIN_DONE, lock_handler_->state()); 568 EXPECT_EQ(TestLockHandler::STATE_SIGNIN_DONE, lock_handler_->state());
566 } 569 }
567 #endif // defined(OS_CHROMEOS) 570 #endif // defined(OS_CHROMEOS)
568 571
569 } // namespace 572 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/signin/easy_unlock_auth_attempt.cc ('k') | chrome/browser/signin/easy_unlock_screenlock_state_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698