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

Side by Side Diff: chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api_unittest.cc

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/extensions/api/enterprise_platform_keys_private/enterpr ise_platform_keys_private_api.h" 5 #include "chrome/browser/extensions/api/enterprise_platform_keys_private/enterpr ise_platform_keys_private_api.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/prefs/pref_service.h"
12 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
13 #include "base/thread_task_runner_handle.h" 12 #include "base/thread_task_runner_handle.h"
14 #include "base/values.h" 13 #include "base/values.h"
15 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h" 14 #include "chrome/browser/chromeos/login/users/fake_chrome_user_manager.h"
16 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" 15 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h"
17 #include "chrome/browser/chromeos/policy/stub_enterprise_install_attributes.h" 16 #include "chrome/browser/chromeos/policy/stub_enterprise_install_attributes.h"
18 #include "chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.h" 17 #include "chrome/browser/chromeos/settings/scoped_cros_settings_test_helper.h"
19 #include "chrome/browser/extensions/extension_function_test_utils.h" 18 #include "chrome/browser/extensions/extension_function_test_utils.h"
20 #include "chrome/browser/signin/signin_manager_factory.h" 19 #include "chrome/browser/signin/signin_manager_factory.h"
21 #include "chrome/browser/ui/browser.h" 20 #include "chrome/browser/ui/browser.h"
22 #include "chrome/common/pref_names.h" 21 #include "chrome/common/pref_names.h"
23 #include "chrome/test/base/browser_with_test_window_test.h" 22 #include "chrome/test/base/browser_with_test_window_test.h"
24 #include "chromeos/attestation/attestation_constants.h" 23 #include "chromeos/attestation/attestation_constants.h"
25 #include "chromeos/attestation/mock_attestation_flow.h" 24 #include "chromeos/attestation/mock_attestation_flow.h"
26 #include "chromeos/cryptohome/async_method_caller.h" 25 #include "chromeos/cryptohome/async_method_caller.h"
27 #include "chromeos/cryptohome/mock_async_method_caller.h" 26 #include "chromeos/cryptohome/mock_async_method_caller.h"
28 #include "chromeos/dbus/dbus_method_call_status.h" 27 #include "chromeos/dbus/dbus_method_call_status.h"
29 #include "chromeos/dbus/mock_cryptohome_client.h" 28 #include "chromeos/dbus/mock_cryptohome_client.h"
30 #include "components/policy/core/common/cloud/cloud_policy_constants.h" 29 #include "components/policy/core/common/cloud/cloud_policy_constants.h"
30 #include "components/prefs/pref_service.h"
31 #include "components/signin/core/account_id/account_id.h" 31 #include "components/signin/core/account_id/account_id.h"
32 #include "components/signin/core/browser/signin_manager.h" 32 #include "components/signin/core/browser/signin_manager.h"
33 #include "extensions/common/test_util.h" 33 #include "extensions/common/test_util.h"
34 #include "testing/gmock/include/gmock/gmock.h" 34 #include "testing/gmock/include/gmock/gmock.h"
35 #include "testing/gtest/include/gtest/gtest.h" 35 #include "testing/gtest/include/gtest/gtest.h"
36 #include "third_party/cros_system_api/dbus/service_constants.h" 36 #include "third_party/cros_system_api/dbus/service_constants.h"
37 37
38 using testing::_; 38 using testing::_;
39 using testing::Invoke; 39 using testing::Invoke;
40 using testing::NiceMock; 40 using testing::NiceMock;
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 } 526 }
527 }; 527 };
528 528
529 TEST_F(EPKPChallengeUserKeyUnmanagedUserTest, UserNotManaged) { 529 TEST_F(EPKPChallengeUserKeyUnmanagedUserTest, UserNotManaged) {
530 EXPECT_EQ(EPKPChallengeKeyBase::kUserNotManaged, 530 EXPECT_EQ(EPKPChallengeKeyBase::kUserNotManaged,
531 utils::RunFunctionAndReturnError(func_.get(), kArgs, browser())); 531 utils::RunFunctionAndReturnError(func_.get(), kArgs, browser()));
532 } 532 }
533 533
534 } // namespace 534 } // namespace
535 } // namespace extensions 535 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698