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

Side by Side Diff: chrome/browser/chromeos/policy/user_affiliation_browsertest.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 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 "base/macros.h"
5 #include "base/memory/scoped_ptr.h" 6 #include "base/memory/scoped_ptr.h"
6 #include "chrome/browser/chromeos/policy/affiliation_test_helper.h" 7 #include "chrome/browser/chromeos/policy/affiliation_test_helper.h"
7 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h" 8 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h"
8 #include "chromeos/dbus/dbus_thread_manager.h" 9 #include "chromeos/dbus/dbus_thread_manager.h"
9 #include "chromeos/dbus/fake_session_manager_client.h" 10 #include "chromeos/dbus/fake_session_manager_client.h"
10 #include "chromeos/dbus/session_manager_client.h" 11 #include "chromeos/dbus/session_manager_client.h"
11 #include "components/user_manager/user.h" 12 #include "components/user_manager/user.h"
12 #include "components/user_manager/user_manager.h" 13 #include "components/user_manager/user_manager.h"
13 #include "content/public/test/test_utils.h" 14 #include "content/public/test/test_utils.h"
14 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 user_manager::UserManager::Get() 85 user_manager::UserManager::Get()
85 ->FindUser(AccountId::FromUserEmail(kAffiliatedUser)) 86 ->FindUser(AccountId::FromUserEmail(kAffiliatedUser))
86 ->is_affiliated()); 87 ->is_affiliated());
87 } 88 }
88 89
89 INSTANTIATE_TEST_CASE_P(AffiliationCheck, 90 INSTANTIATE_TEST_CASE_P(AffiliationCheck,
90 UserAffiliationBrowserTest, 91 UserAffiliationBrowserTest,
91 ::testing::Values(Params(true), Params(false))); 92 ::testing::Values(Params(true), Params(false)));
92 93
93 } // namespace policy 94 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698