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

Unified Diff: tools/perf/profile_creators/cookie_profile_extender.py

Issue 1115383002: Disable failing telemetry unit tests on chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: perf2 Created 5 years, 8 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/perf/profile_creators/cookie_profile_extender.py
diff --git a/tools/perf/profile_creators/cookie_profile_extender.py b/tools/perf/profile_creators/cookie_profile_extender.py
index cb53363be0db52894060bdcc502039c7ce8eb93d..7ffd27748add34f0e27904734f0fd4c2c78ca77a 100644
--- a/tools/perf/profile_creators/cookie_profile_extender.py
+++ b/tools/perf/profile_creators/cookie_profile_extender.py
@@ -3,7 +3,11 @@
# found in the LICENSE file.
import multiprocessing
import os
-import sqlite3
+
+try:
cylee1 2015/05/04 11:16:59 Please leave some comment/reference here so people
achuithb 2015/05/04 19:48:00 Done.
+ import sqlite3
+except ImportError:
+ pass
import page_sets

Powered by Google App Engine
This is Rietveld 408576698