OLD | NEW |
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 "chrome/browser/instant/instant_test_utils.h" | 5 #include "chrome/browser/ui/search/instant_test_utils.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/search_engines/template_url_service.h" | 10 #include "chrome/browser/search_engines/template_url_service.h" |
11 #include "chrome/browser/search_engines/template_url_service_factory.h" | 11 #include "chrome/browser/search_engines/template_url_service_factory.h" |
12 #include "chrome/browser/ui/omnibox/omnibox_view.h" | 12 #include "chrome/browser/ui/omnibox/omnibox_view.h" |
13 #include "chrome/common/chrome_notification_types.h" | 13 #include "chrome/common/chrome_notification_types.h" |
14 #include "chrome/common/chrome_switches.h" | 14 #include "chrome/common/chrome_switches.h" |
15 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 bool InstantTestBase::LoadImage(content::RenderViewHost* rvh, | 188 bool InstantTestBase::LoadImage(content::RenderViewHost* rvh, |
189 const std::string& image, | 189 const std::string& image, |
190 bool* loaded) { | 190 bool* loaded) { |
191 std::string js_chrome = | 191 std::string js_chrome = |
192 "var img = document.createElement('img');" | 192 "var img = document.createElement('img');" |
193 "img.onerror = function() { domAutomationController.send(false); };" | 193 "img.onerror = function() { domAutomationController.send(false); };" |
194 "img.onload = function() { domAutomationController.send(true); };" | 194 "img.onload = function() { domAutomationController.send(true); };" |
195 "img.src = '" + image + "';"; | 195 "img.src = '" + image + "';"; |
196 return content::ExecuteScriptAndExtractBool(rvh, js_chrome, loaded); | 196 return content::ExecuteScriptAndExtractBool(rvh, js_chrome, loaded); |
197 } | 197 } |
OLD | NEW |