blob: bae731f4328c1fb2e1a24e60c1ea4a4660cb9238 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/chrome/test/app/navigation_test_util.h"
#import "ios/chrome/test/app/chrome_test_util.h"
#import "ios/web/public/test/navigation_test_util.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace chrome_test_util {
void LoadUrl(const GURL& url) {
web::test::LoadUrl(GetCurrentWebState(), url);
}
bool IsLoading() {
return GetCurrentWebState()->IsLoading();
}
} // namespace chrome_test_util