Shorten string
[chromium-blink-merge.git] / content / test / content_browser_test_utils_internal.h
bloba27aea58e881f428a30480d934178dc0cc0030b4
1 // Copyright 2014 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.
5 #ifndef CONTENT_TEST_CONTENT_BROWSER_TEST_UTILS_INTERNAL_H_
6 #define CONTENT_TEST_CONTENT_BROWSER_TEST_UTILS_INTERNAL_H_
8 // A collections of functions designed for use with content_shell based browser
9 // tests internal to the content/ module.
10 // Note: If a function here also works with browser_tests, it should be in
11 // the content public API.
13 class GURL;
15 namespace content {
17 class FrameTreeNode;
19 // Navigates the frame represented by |node| to |url|, blocking until the
20 // navigation finishes.
21 void NavigateFrameToURL(FrameTreeNode* node, const GURL& url);
23 } // namespace content
25 #endif // CONTENT_TEST_CONTENT_BROWSER_TEST_UTILS_INTERNAL_H_