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 #ifndef CHROME_BROWSER_UI_SEARCH_INSTANT_TEST_UTILS_H_ | 5 #ifndef CHROME_BROWSER_UI_SEARCH_INSTANT_TEST_UTILS_H_ |
6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_TEST_UTILS_H_ | 6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_TEST_UTILS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 return browser_->window()->GetLocationBar()->GetLocationEntry(); | 81 return browser_->window()->GetLocationBar()->GetLocationEntry(); |
82 } | 82 } |
83 | 83 |
84 const GURL& instant_url() const { return instant_url_; } | 84 const GURL& instant_url() const { return instant_url_; } |
85 | 85 |
86 net::SpawnedTestServer& https_test_server() { return https_test_server_; } | 86 net::SpawnedTestServer& https_test_server() { return https_test_server_; } |
87 | 87 |
88 void KillInstantRenderView(); | 88 void KillInstantRenderView(); |
89 | 89 |
90 void FocusOmnibox(); | 90 void FocusOmnibox(); |
91 void FocusOmniboxAndWaitForInstantNTPSupport(); | 91 void FocusOmniboxAndWaitForInstantOverlaySupport(); |
| 92 void FocusOmniboxAndWaitForInstantOverlayAndNTPSupport(); |
92 | 93 |
93 void SetOmniboxText(const std::string& text); | 94 void SetOmniboxText(const std::string& text); |
94 bool SetOmniboxTextAndWaitForOverlayToShow(const std::string& text); | 95 bool SetOmniboxTextAndWaitForOverlayToShow(const std::string& text); |
95 void SetOmniboxTextAndWaitForSuggestion(const std::string& text); | 96 void SetOmniboxTextAndWaitForSuggestion(const std::string& text); |
96 | 97 |
97 void PressEnterAndWaitForNavigation(); | 98 void PressEnterAndWaitForNavigation(); |
98 | 99 |
99 bool GetBoolFromJS(content::WebContents* contents, | 100 bool GetBoolFromJS(content::WebContents* contents, |
100 const std::string& script, | 101 const std::string& script, |
101 bool* result) WARN_UNUSED_RESULT; | 102 bool* result) WARN_UNUSED_RESULT; |
(...skipping 27 matching lines...) Expand all Loading... |
129 | 130 |
130 Browser* browser_; | 131 Browser* browser_; |
131 | 132 |
132 // HTTPS Testing server, started on demand. | 133 // HTTPS Testing server, started on demand. |
133 net::SpawnedTestServer https_test_server_; | 134 net::SpawnedTestServer https_test_server_; |
134 | 135 |
135 DISALLOW_COPY_AND_ASSIGN(InstantTestBase); | 136 DISALLOW_COPY_AND_ASSIGN(InstantTestBase); |
136 }; | 137 }; |
137 | 138 |
138 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_TEST_UTILS_H_ | 139 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_TEST_UTILS_H_ |
OLD | NEW |