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

Unified Diff: tools/android/loading/trace_test/webserver_test.py

Issue 2047463002: Set tracing categories explicitly in Clovis and Sandwich (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: tools/android/loading/trace_test/webserver_test.py
diff --git a/tools/android/loading/trace_test/webserver_test.py b/tools/android/loading/trace_test/webserver_test.py
index 1db5da71f7e59dccd0b9f3eff058c07effa328d9..f6dbf9646ad3b720617bc17e695eed0e29cd2855 100755
--- a/tools/android/loading/trace_test/webserver_test.py
+++ b/tools/android/loading/trace_test/webserver_test.py
@@ -41,6 +41,7 @@ import urlparse
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
+import clovis_constants
import controller
import loading_trace
import options
@@ -234,7 +235,8 @@ def RunTest(webserver, test_page, expected):
connection.ClearCache()
observed_seq = InitiatorSequence(
loading_trace.LoadingTrace.RecordUrlNavigation(
- url, connection, chrome_controller.ChromeMetadata()))
+ url, connection, chrome_controller.ChromeMetadata(),
+ categories=clovis_constants.DEFAULT_CATEGORIES))
if observed_seq == expected:
sys.stdout.write(' ok\n')
return True

Powered by Google App Engine
This is Rietveld 408576698