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

Unified Diff: components/test_runner/test_runner.h

Issue 1381003004: Better distinguish didFinishLoad and didStopLoading (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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_runner.h
diff --git a/components/test_runner/test_runner.h b/components/test_runner/test_runner.h
index 45ee51af15908707da4350a7cb487e7e80a4d0f3..5f9cdf08fbd5b12f5b87102db82d9815248d2fbd 100644
--- a/components/test_runner/test_runner.h
+++ b/components/test_runner/test_runner.h
@@ -104,7 +104,6 @@ class TestRunner : public WebTestRunner,
bool shouldDumpResourceRequestCallbacks() const;
bool shouldDumpResourceResponseMIMETypes() const;
bool shouldDumpStatusCallbacks() const;
- bool shouldDumpProgressFinishedCallback() const;
bool shouldDumpSpellCheckCallbacks() const;
bool shouldWaitUntilExternalURLLoad() const;
const std::set<std::string>* httpHeadersToClear() const;
@@ -435,11 +434,6 @@ class TestRunner : public WebTestRunner,
// It takes no arguments, and ignores any that may be present.
void DumpWindowStatusChanges();
- // This function sets a flag that tells the test_shell to print a line of
- // descriptive text for the progress finished callback. It takes no
- // arguments, and ignores any that may be present.
- void DumpProgressFinishedCallback();
-
// This function sets a flag that tells the test_shell to dump all
// the lines of descriptive text about spellcheck execution.
void DumpSpellCheckCallbacks();
@@ -765,10 +759,6 @@ class TestRunner : public WebTestRunner,
// If true, the test_shell will dump all changes to window.status.
bool dump_window_status_changes_;
- // If true, the test_shell will output a descriptive line for the progress
- // finished callback.
- bool dump_progress_finished_callback_;
-
// If true, the test_shell will output descriptive test for spellcheck
// execution.
bool dump_spell_check_callbacks_;

Powered by Google App Engine
This is Rietveld 408576698