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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp

Issue 2525903003: Add Page.stopLoading to devtools and --timeout switch to headless_shell (Closed)
Patch Set: FixPage.stopLoading command description. Created 4 years, 1 month 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: third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
index eac2f9c935664f74e70ed863ec3b8be439cf0a2d..db7a42d6e452c71759efbbef066f184d8e0784f0 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
@@ -463,6 +463,10 @@ Response InspectorPageAgent::navigate(const String& url, String* outFrameId) {
return Response::OK();
}
+Response InspectorPageAgent::stopLoading() {
+ return Response::OK();
+}
+
static void cachedResourcesForDocument(Document* document,
HeapVector<Member<Resource>>& result,
bool skipXHRs) {

Powered by Google App Engine
This is Rietveld 408576698