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

Side by Side Diff: chrome/browser/chromeos/policy/device_local_account_browsertest.cc

Issue 147923005: Split ExtensionSystem interface from ExtensionSystemImpl implementation, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re^3base Created 6 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 | Annotate | Revision Log
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 <map> 5 #include <map>
6 #include <string> 6 #include <string>
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "chrome/browser/chromeos/login/webui_login_view.h" 46 #include "chrome/browser/chromeos/login/webui_login_view.h"
47 #include "chrome/browser/chromeos/login/wizard_controller.h" 47 #include "chrome/browser/chromeos/login/wizard_controller.h"
48 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" 48 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
49 #include "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_u til.h" 49 #include "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_u til.h"
50 #include "chrome/browser/chromeos/policy/device_local_account.h" 50 #include "chrome/browser/chromeos/policy/device_local_account.h"
51 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h" 51 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h"
52 #include "chrome/browser/chromeos/policy/device_policy_builder.h" 52 #include "chrome/browser/chromeos/policy/device_policy_builder.h"
53 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h" 53 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h"
54 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h" 54 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h"
55 #include "chrome/browser/extensions/extension_service.h" 55 #include "chrome/browser/extensions/extension_service.h"
56 #include "chrome/browser/extensions/extension_system.h"
57 #include "chrome/browser/lifetime/application_lifetime.h" 56 #include "chrome/browser/lifetime/application_lifetime.h"
58 #include "chrome/browser/policy/profile_policy_connector.h" 57 #include "chrome/browser/policy/profile_policy_connector.h"
59 #include "chrome/browser/policy/profile_policy_connector_factory.h" 58 #include "chrome/browser/policy/profile_policy_connector_factory.h"
60 #include "chrome/browser/policy/test/local_policy_test_server.h" 59 #include "chrome/browser/policy/test/local_policy_test_server.h"
61 #include "chrome/browser/prefs/session_startup_pref.h" 60 #include "chrome/browser/prefs/session_startup_pref.h"
62 #include "chrome/browser/profiles/profile.h" 61 #include "chrome/browser/profiles/profile.h"
63 #include "chrome/browser/profiles/profile_manager.h" 62 #include "chrome/browser/profiles/profile_manager.h"
64 #include "chrome/browser/ui/browser.h" 63 #include "chrome/browser/ui/browser.h"
65 #include "chrome/browser/ui/browser_commands.h" 64 #include "chrome/browser/ui/browser_commands.h"
66 #include "chrome/browser/ui/browser_finder.h" 65 #include "chrome/browser/ui/browser_finder.h"
(...skipping 16 matching lines...) Expand all
83 #include "components/policy/core/common/policy_namespace.h" 82 #include "components/policy/core/common/policy_namespace.h"
84 #include "components/policy/core/common/policy_service.h" 83 #include "components/policy/core/common/policy_service.h"
85 #include "components/policy/core/common/policy_switches.h" 84 #include "components/policy/core/common/policy_switches.h"
86 #include "content/public/browser/notification_details.h" 85 #include "content/public/browser/notification_details.h"
87 #include "content/public/browser/notification_source.h" 86 #include "content/public/browser/notification_source.h"
88 #include "content/public/browser/web_contents.h" 87 #include "content/public/browser/web_contents.h"
89 #include "content/public/browser/web_ui.h" 88 #include "content/public/browser/web_ui.h"
90 #include "content/public/test/browser_test_utils.h" 89 #include "content/public/test/browser_test_utils.h"
91 #include "content/public/test/test_utils.h" 90 #include "content/public/test/test_utils.h"
92 #include "crypto/rsa_private_key.h" 91 #include "crypto/rsa_private_key.h"
92 #include "extensions/browser/extension_system.h"
93 #include "extensions/common/extension.h" 93 #include "extensions/common/extension.h"
94 #include "grit/chromium_strings.h" 94 #include "grit/chromium_strings.h"
95 #include "grit/generated_resources.h" 95 #include "grit/generated_resources.h"
96 #include "net/base/url_util.h" 96 #include "net/base/url_util.h"
97 #include "net/http/http_status_code.h" 97 #include "net/http/http_status_code.h"
98 #include "net/test/embedded_test_server/embedded_test_server.h" 98 #include "net/test/embedded_test_server/embedded_test_server.h"
99 #include "net/test/embedded_test_server/http_request.h" 99 #include "net/test/embedded_test_server/http_request.h"
100 #include "net/test/embedded_test_server/http_response.h" 100 #include "net/test/embedded_test_server/http_response.h"
101 #include "net/url_request/test_url_fetcher_factory.h" 101 #include "net/url_request/test_url_fetcher_factory.h"
102 #include "net/url_request/url_fetcher_delegate.h" 102 #include "net/url_request/url_fetcher_delegate.h"
(...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 if (!IsSessionStarted()) { 1188 if (!IsSessionStarted()) {
1189 content::WindowedNotificationObserver(chrome::NOTIFICATION_SESSION_STARTED, 1189 content::WindowedNotificationObserver(chrome::NOTIFICATION_SESSION_STARTED,
1190 base::Bind(IsSessionStarted)).Wait(); 1190 base::Bind(IsSessionStarted)).Wait();
1191 } 1191 }
1192 } 1192 }
1193 1193
1194 INSTANTIATE_TEST_CASE_P(TermsOfServiceTestInstance, 1194 INSTANTIATE_TEST_CASE_P(TermsOfServiceTestInstance,
1195 TermsOfServiceTest, testing::Bool()); 1195 TermsOfServiceTest, testing::Bool());
1196 1196
1197 } // namespace policy 1197 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/offline/offline_load_page.cc ('k') | chrome/browser/devtools/devtools_sanity_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698