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

Side by Side Diff: chrome/browser/prerender/prerender_browsertest.cc

Issue 1824933002: include safe_browsing_db/util.h directly in files not related to chunking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v4_01_prot_mgr_basic_tests
Patch Set: git fetch && git rebase Created 4 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <stddef.h> 5 #include <stddef.h>
6 #include <deque> 6 #include <deque>
7 #include <utility> 7 #include <utility>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "chrome/browser/prerender/prerender_handle.h" 44 #include "chrome/browser/prerender/prerender_handle.h"
45 #include "chrome/browser/prerender/prerender_link_manager.h" 45 #include "chrome/browser/prerender/prerender_link_manager.h"
46 #include "chrome/browser/prerender/prerender_link_manager_factory.h" 46 #include "chrome/browser/prerender/prerender_link_manager_factory.h"
47 #include "chrome/browser/prerender/prerender_manager.h" 47 #include "chrome/browser/prerender/prerender_manager.h"
48 #include "chrome/browser/prerender/prerender_manager_factory.h" 48 #include "chrome/browser/prerender/prerender_manager_factory.h"
49 #include "chrome/browser/profiles/profile.h" 49 #include "chrome/browser/profiles/profile.h"
50 #include "chrome/browser/profiles/profile_io_data.h" 50 #include "chrome/browser/profiles/profile_io_data.h"
51 #include "chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate. h" 51 #include "chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate. h"
52 #include "chrome/browser/safe_browsing/local_database_manager.h" 52 #include "chrome/browser/safe_browsing/local_database_manager.h"
53 #include "chrome/browser/safe_browsing/safe_browsing_service.h" 53 #include "chrome/browser/safe_browsing/safe_browsing_service.h"
54 #include "chrome/browser/safe_browsing/safe_browsing_util.h"
55 #include "chrome/browser/task_management/providers/web_contents/web_contents_tag s_manager.h" 54 #include "chrome/browser/task_management/providers/web_contents/web_contents_tag s_manager.h"
56 #include "chrome/browser/task_management/task_management_browsertest_util.h" 55 #include "chrome/browser/task_management/task_management_browsertest_util.h"
57 #include "chrome/browser/task_manager/task_manager.h" 56 #include "chrome/browser/task_manager/task_manager.h"
58 #include "chrome/browser/task_manager/task_manager_browsertest_util.h" 57 #include "chrome/browser/task_manager/task_manager_browsertest_util.h"
59 #include "chrome/browser/ui/browser.h" 58 #include "chrome/browser/ui/browser.h"
60 #include "chrome/browser/ui/browser_commands.h" 59 #include "chrome/browser/ui/browser_commands.h"
61 #include "chrome/browser/ui/browser_finder.h" 60 #include "chrome/browser/ui/browser_finder.h"
62 #include "chrome/browser/ui/browser_window.h" 61 #include "chrome/browser/ui/browser_window.h"
63 #include "chrome/browser/ui/location_bar/location_bar.h" 62 #include "chrome/browser/ui/location_bar/location_bar.h"
64 #include "chrome/browser/ui/tabs/tab_strip_model.h" 63 #include "chrome/browser/ui/tabs/tab_strip_model.h"
65 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" 64 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
66 #include "chrome/common/chrome_paths.h" 65 #include "chrome/common/chrome_paths.h"
67 #include "chrome/common/chrome_switches.h" 66 #include "chrome/common/chrome_switches.h"
68 #include "chrome/common/pref_names.h" 67 #include "chrome/common/pref_names.h"
69 #include "chrome/grit/generated_resources.h" 68 #include "chrome/grit/generated_resources.h"
70 #include "chrome/test/base/in_process_browser_test.h" 69 #include "chrome/test/base/in_process_browser_test.h"
71 #include "chrome/test/base/test_switches.h" 70 #include "chrome/test/base/test_switches.h"
72 #include "chrome/test/base/ui_test_utils.h" 71 #include "chrome/test/base/ui_test_utils.h"
73 #include "components/content_settings/core/browser/host_content_settings_map.h" 72 #include "components/content_settings/core/browser/host_content_settings_map.h"
74 #include "components/favicon/content/content_favicon_driver.h" 73 #include "components/favicon/content/content_favicon_driver.h"
75 #include "components/favicon/core/favicon_driver_observer.h" 74 #include "components/favicon/core/favicon_driver_observer.h"
76 #include "components/omnibox/browser/omnibox_edit_model.h" 75 #include "components/omnibox/browser/omnibox_edit_model.h"
77 #include "components/omnibox/browser/omnibox_popup_model.h" 76 #include "components/omnibox/browser/omnibox_popup_model.h"
78 #include "components/omnibox/browser/omnibox_view.h" 77 #include "components/omnibox/browser/omnibox_view.h"
79 #include "components/prefs/pref_service.h" 78 #include "components/prefs/pref_service.h"
80 #include "components/safe_browsing_db/database_manager.h" 79 #include "components/safe_browsing_db/database_manager.h"
81 #include "components/safe_browsing_db/test_database_manager.h" 80 #include "components/safe_browsing_db/test_database_manager.h"
81 #include "components/safe_browsing_db/util.h"
82 #include "components/variations/entropy_provider.h" 82 #include "components/variations/entropy_provider.h"
83 #include "components/variations/variations_associated_data.h" 83 #include "components/variations/variations_associated_data.h"
84 #include "content/public/browser/browser_message_filter.h" 84 #include "content/public/browser/browser_message_filter.h"
85 #include "content/public/browser/devtools_agent_host.h" 85 #include "content/public/browser/devtools_agent_host.h"
86 #include "content/public/browser/navigation_controller.h" 86 #include "content/public/browser/navigation_controller.h"
87 #include "content/public/browser/navigation_entry.h" 87 #include "content/public/browser/navigation_entry.h"
88 #include "content/public/browser/notification_service.h" 88 #include "content/public/browser/notification_service.h"
89 #include "content/public/browser/render_frame_host.h" 89 #include "content/public/browser/render_frame_host.h"
90 #include "content/public/browser/render_process_host.h" 90 #include "content/public/browser/render_process_host.h"
91 #include "content/public/browser/render_view_host.h" 91 #include "content/public/browser/render_view_host.h"
(...skipping 3966 matching lines...) Expand 10 before | Expand all | Expand 10 after
4058 4058
4059 NavigateToDestURL(); 4059 NavigateToDestURL();
4060 EXPECT_EQ(1U, task_manager.tasks().size()); 4060 EXPECT_EQ(1U, task_manager.tasks().size());
4061 } 4061 }
4062 4062
4063 } // namespace 4063 } // namespace
4064 4064
4065 #endif // defined(ENABLE_TASK_MANAGER) 4065 #endif // defined(ENABLE_TASK_MANAGER)
4066 4066
4067 } // namespace prerender 4067 } // namespace prerender
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698