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

Side by Side Diff: chrome/browser/ui/webui/options/certificate_manager_browsertest.cc

Issue 78763002: Move PolicyMap and its dependencies to components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: export nested struct Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 "base/callback.h" 5 #include "base/callback.h"
6 #include "base/values.h" 6 #include "base/values.h"
7 #include "chrome/browser/browser_process.h" 7 #include "chrome/browser/browser_process.h"
8 #include "chrome/browser/policy/browser_policy_connector.h" 8 #include "chrome/browser/policy/browser_policy_connector.h"
9 #include "chrome/browser/policy/external_data_fetcher.h"
10 #include "chrome/browser/policy/mock_configuration_policy_provider.h" 9 #include "chrome/browser/policy/mock_configuration_policy_provider.h"
11 #include "chrome/browser/policy/policy_map.h"
12 #include "chrome/browser/policy/policy_types.h"
13 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
14 #include "chrome/browser/ui/tabs/tab_strip_model.h" 11 #include "chrome/browser/ui/tabs/tab_strip_model.h"
15 #include "chrome/browser/ui/webui/options/options_ui_browsertest.h" 12 #include "chrome/browser/ui/webui/options/options_ui_browsertest.h"
13 #include "components/policy/core/common/external_data_fetcher.h"
14 #include "components/policy/core/common/policy_map.h"
15 #include "components/policy/core/common/policy_types.h"
16 #include "content/public/browser/web_contents.h" 16 #include "content/public/browser/web_contents.h"
17 #include "content/public/test/browser_test_utils.h" 17 #include "content/public/test/browser_test_utils.h"
18 #include "content/public/test/test_utils.h" 18 #include "content/public/test/test_utils.h"
19 #include "policy/policy_constants.h" 19 #include "policy/policy_constants.h"
20 #include "testing/gmock/include/gmock/gmock.h" 20 #include "testing/gmock/include/gmock/gmock.h"
21 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
22 22
23 #if defined(OS_CHROMEOS) 23 #if defined(OS_CHROMEOS)
24 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h" 24 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h"
25 #include "chrome/browser/chromeos/policy/network_configuration_updater.h" 25 #include "chrome/browser/chromeos/policy/network_configuration_updater.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 // managed setting indicator (only on Chrome OS). 108 // managed setting indicator (only on Chrome OS).
109 IN_PROC_BROWSER_TEST_F(CertificateManagerBrowserTest, 109 IN_PROC_BROWSER_TEST_F(CertificateManagerBrowserTest,
110 PolicyCertificateWithWebTrustHasIndicator) { 110 PolicyCertificateWithWebTrustHasIndicator) {
111 LoadONCPolicy("certificate-web-authority.onc"); 111 LoadONCPolicy("certificate-web-authority.onc");
112 NavigateToSettings(); 112 NavigateToSettings();
113 ClickElement("#certificatesManageButton"); 113 ClickElement("#certificatesManageButton");
114 ClickElement("#ca-certs-nav-tab"); 114 ClickElement("#ca-certs-nav-tab");
115 EXPECT_TRUE(HasElement(".cert-policy")); 115 EXPECT_TRUE(HasElement(".cert-policy"));
116 } 116 }
117 #endif 117 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698