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

Unified Diff: content/shell/webkit_test_runner.js

Issue 11821051: [content shell] hook up resource load callback printing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « content/shell/webkit_test_runner.cc ('k') | content/shell/webkit_test_runner_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/webkit_test_runner.js
diff --git a/content/shell/webkit_test_runner.js b/content/shell/webkit_test_runner.js
index ad13141c87f40c2788e475045e29a05338d3c382..5cbb59fefe07e5891a774788fb413141fda57207 100644
--- a/content/shell/webkit_test_runner.js
+++ b/content/shell/webkit_test_runner.js
@@ -12,6 +12,10 @@ var testRunner = testRunner || {};
native function DumpUserGestureInFrameLoadCallbacks();
native function SetStopProvisionalFrameLoads();
native function DumpTitleChanges();
+ native function DumpResourceLoadCallbacks();
+ native function DumpResourceRequestCallbacks();
+ native function DumpResourceResponseMIMETypes();
+ native function DumpCreateView();
native function EvaluateInWebInspector();
native function ExecCommand();
native function GetWorkerThreadCount();
@@ -99,6 +103,18 @@ var testRunner = testRunner || {};
"setStopProvisionalFrameLoads",
{value: SetStopProvisionalFrameLoads});
Object.defineProperty(this,
+ "dumpResourceLoadCallbacks",
+ {value: DumpResourceLoadCallbacks});
+ Object.defineProperty(this,
+ "dumpResourceRequestCallbacks",
+ {value: DumpResourceRequestCallbacks});
+ Object.defineProperty(this,
+ "dumpResourceResponseMIMETypes",
+ {value: DumpResourceResponseMIMETypes});
+ Object.defineProperty(this,
+ "dumpCreateView",
+ {value: DumpCreateView});
+ Object.defineProperty(this,
"dumpTitleChanges",
{value: DumpTitleChanges});
« no previous file with comments | « content/shell/webkit_test_runner.cc ('k') | content/shell/webkit_test_runner_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698