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

Side by Side Diff: ios/chrome/test/app/static_html_view_test_util.h

Issue 2784943002: Remove matcher to wait for static HTML view. (Closed)
Patch Set: more better comments Created 3 years, 8 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef IOS_CHROME_TEST_APP_STATIC_HTML_VIEW_TEST_UTIL_H_
6 #define IOS_CHROME_TEST_APP_STATIC_HTML_VIEW_TEST_UTIL_H_
7
8 #import "ios/web/public/web_state/web_state.h"
9
10 namespace chrome_test_util {
11
12 // Returns true if there is a static html view in the |web_state|, which
13 // contains |text|. If the text is not present, or there is no static html view
14 // it returns false.
15 bool StaticHtmlViewContainingText(web::WebState* web_state, std::string text);
baxley 2017/03/31 20:59:22 I know you had a concern about having some methods
Eugene But (OOO till 7-30) 2017/03/31 22:19:17 I think this is fine. AFAIK, methods inside chrome
baxley 2017/04/03 18:10:41 Yes, this comment was in response to an offline co
16
17 } // namespace chrome_test_util
18
19 #endif // IOS_CHROME_TEST_APP_STATIC_HTML_VIEW_TEST_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698