Commit 0c6ab158 authored by gunsch@chromium.org's avatar gunsch@chromium.org

Chromecast: disables application cache.

Chromecast application cache is disabled due to storage constraints
on device flash.

Aside: removes "enable-webrtc-hw-decoding", which doesn't exist, and "enable-threaded-compositing", which is now enabled by default.

R=lcwu@chromium.org,damienv@chromium.org
BUG=336640

Review URL: https://codereview.chromium.org/468223004

Cr-Commit-Position: refs/heads/master@{#290022}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290022 0039d316-1c4b-4281-b951-d872f2087c98
parent d1f323a8
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include "chromecast/shell/browser/devtools/remote_debugging_server.h" #include "chromecast/shell/browser/devtools/remote_debugging_server.h"
#include "chromecast/shell/browser/url_request_context_factory.h" #include "chromecast/shell/browser/url_request_context_factory.h"
#include "chromecast/shell/browser/webui/webui_cast.h" #include "chromecast/shell/browser/webui/webui_cast.h"
#include "content/public/common/content_switches.h"
namespace chromecast { namespace chromecast {
namespace shell { namespace shell {
...@@ -26,9 +27,8 @@ struct DefaultCommandLineSwitch { ...@@ -26,9 +27,8 @@ struct DefaultCommandLineSwitch {
}; };
DefaultCommandLineSwitch g_default_switches[] = { DefaultCommandLineSwitch g_default_switches[] = {
{ "enable-webrtc-hw-decoding", "" }, { switches::kDisableApplicationCache, "" },
{ "disable-plugins", "" }, { switches::kDisablePlugins, "" },
{ "enable-threaded-compositing", "" },
{ NULL, NULL }, // Termination { NULL, NULL }, // Termination
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment