OLD | NEW |
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 <stdint.h> | 5 #include <stdint.h> |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/location.h" | 8 #include "base/location.h" |
9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
12 #include "chrome/browser/extensions/activity_log/activity_log.h" | 12 #include "chrome/browser/extensions/activity_log/activity_log.h" |
13 #include "chrome/browser/extensions/extension_apitest.h" | 13 #include "chrome/browser/extensions/extension_apitest.h" |
14 #include "chrome/browser/extensions/extension_browsertest.h" | 14 #include "chrome/browser/extensions/extension_browsertest.h" |
15 #include "chrome/browser/prerender/prerender_handle.h" | 15 #include "chrome/browser/prerender/prerender_handle.h" |
16 #include "chrome/browser/prerender/prerender_manager.h" | 16 #include "chrome/browser/prerender/prerender_manager.h" |
17 #include "chrome/browser/prerender/prerender_manager_factory.h" | 17 #include "chrome/browser/prerender/prerender_manager_factory.h" |
18 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 18 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
19 #include "chrome/common/chrome_switches.h" | 19 #include "chrome/common/chrome_switches.h" |
20 #include "content/public/browser/notification_service.h" | 20 #include "content/public/browser/notification_service.h" |
| 21 #include "content/public/browser/notification_types.h" |
21 #include "content/public/test/browser_test_utils.h" | 22 #include "content/public/test/browser_test_utils.h" |
22 #include "content/public/test/test_utils.h" | 23 #include "content/public/test/test_utils.h" |
23 #include "net/dns/mock_host_resolver.h" | 24 #include "net/dns/mock_host_resolver.h" |
24 #include "net/test/embedded_test_server/embedded_test_server.h" | 25 #include "net/test/embedded_test_server/embedded_test_server.h" |
25 | 26 |
26 namespace extensions { | 27 namespace extensions { |
27 | 28 |
28 // Only the prerender tests are in this file. To add tests for activity | 29 // Only the prerender tests are in this file. To add tests for activity |
29 // logging please see: | 30 // logging please see: |
30 // chrome/test/data/extensions/api_test/activity_log_private/README | 31 // chrome/test/data/extensions/api_test/activity_log_private/README |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 activity_log->GetFilteredActions( | 116 activity_log->GetFilteredActions( |
116 ext->id(), Action::ACTION_ANY, "", "", "", -1, | 117 ext->id(), Action::ACTION_ANY, "", "", "", -1, |
117 base::Bind(ActivityLogPrerenderTest::Prerender_Arguments, ext->id(), port, | 118 base::Bind(ActivityLogPrerenderTest::Prerender_Arguments, ext->id(), port, |
118 run_loop.QuitWhenIdleClosure())); | 119 run_loop.QuitWhenIdleClosure())); |
119 | 120 |
120 // Allow invocation of Prerender_Arguments | 121 // Allow invocation of Prerender_Arguments |
121 run_loop.Run(); | 122 run_loop.Run(); |
122 } | 123 } |
123 | 124 |
124 } // namespace extensions | 125 } // namespace extensions |
OLD | NEW |