Index: chromecast/shell/browser/cast_browser_main_parts.cc |
diff --git a/chromecast/shell/browser/cast_browser_main_parts.cc b/chromecast/shell/browser/cast_browser_main_parts.cc |
index 1da09377be0fbf30e243278eddc5d369eae98d4f..cfb8770d92ae3328e2eb9c01c61a176a7799a99e 100644 |
--- a/chromecast/shell/browser/cast_browser_main_parts.cc |
+++ b/chromecast/shell/browser/cast_browser_main_parts.cc |
@@ -10,6 +10,7 @@ |
#include "chromecast/service/cast_service.h" |
#include "chromecast/shell/browser/cast_browser_context.h" |
#include "chromecast/shell/browser/url_request_context_factory.h" |
+#include "content/public/common/content_switches.h" |
namespace chromecast { |
namespace shell { |
@@ -22,9 +23,9 @@ struct DefaultCommandLineSwitch { |
}; |
DefaultCommandLineSwitch g_default_switches[] = { |
- { "enable-webrtc-hw-decoding", "" }, |
- { "disable-plugins", "" }, |
- { "enable-threaded-compositing", "" }, |
+ { switches::kDisableApplicationCache, "" }, |
+ { switches::kDisablePlugins, "" }, |
+ { switches::kEnableThreadedCompositing, "" }, |
lcwu1
2014/08/14 20:39:50
This flag is no longer needed as threaded composit
gunsch
2014/08/14 20:44:59
Done.
|
{ NULL, NULL }, // Termination |
}; |