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

Unified Diff: tools/android/loading/controller.py

Issue 1931523002: tools/android/loading: Force to use of simple cache on desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/loading/controller.py
diff --git a/tools/android/loading/controller.py b/tools/android/loading/controller.py
index 1eb2f035b736ba0aadc2425823565cf7b1035d80..758a06b0ced9632c906525612adad86a6e23d1dc 100644
--- a/tools/android/loading/controller.py
+++ b/tools/android/loading/controller.py
@@ -317,6 +317,9 @@ class LocalChromeController(ChromeControllerBase):
child processes used to run Chrome and XVFB."""
chrome_cmd = [OPTIONS.local_binary]
chrome_cmd.extend(self._GetChromeArguments())
+ # Force use of simple cache.
+ # TODO(gabadie): Should we do a SetSimpleCacheBackend(True/False)?
mattcary 2016/04/28 09:20:25 Unless there's going to be a reason to switch betw
gabadie 2016/04/28 11:44:07 Done.
+ chrome_cmd.append('--use-simple-cache-backend=on')
chrome_cmd.append('--user-data-dir=%s' % self._profile_dir)
chrome_cmd.extend(['--enable-logging=stderr', '--v=1'])
# Navigates to about:blank for couples of reasons:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698