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

Unified Diff: components/test_runner/test_common.h

Issue 1821923003: Extract WebFrameClient implementation out of WebTestProxyBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: components/test_runner/test_common.h
diff --git a/components/test_runner/test_common.h b/components/test_runner/test_common.h
index 429f96916c392b53351f59c87528cc192b6eab02..d1e758b43b6f7eecc3a4bd16ffc3f9e139409c23 100644
--- a/components/test_runner/test_common.h
+++ b/components/test_runner/test_common.h
@@ -8,6 +8,9 @@
#include <string>
#include "components/test_runner/test_runner_export.h"
+#include "third_party/WebKit/public/web/WebNavigationPolicy.h"
+
+class GURL;
namespace test_runner {
@@ -21,6 +24,10 @@ inline bool IsNotASCIIAlpha(char ch) {
TEST_RUNNER_EXPORT std::string NormalizeLayoutTestURL(const std::string& url);
+std::string URLDescription(const GURL& url);
+const char* WebNavigationPolicyToString(
+ const blink::WebNavigationPolicy& policy);
+
// Tests which depend on Blink must call this function on the main thread
// before creating/calling any Blink objects/APIs.
TEST_RUNNER_EXPORT void EnsureBlinkInitialized();

Powered by Google App Engine
This is Rietveld 408576698