OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chromecast/shell/renderer/cast_content_renderer_client.h" | 5 #include "chromecast/renderer/cast_content_renderer_client.h" |
6 | 6 |
7 #include <sys/sysinfo.h> | 7 #include <sys/sysinfo.h> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/memory/memory_pressure_listener.h" | 10 #include "base/memory/memory_pressure_listener.h" |
11 #include "chromecast/shell/renderer/key_systems_cast.h" | 11 #include "chromecast/renderer/key_systems_cast.h" |
12 #include "content/public/common/content_switches.h" | 12 #include "content/public/common/content_switches.h" |
13 #include "content/public/renderer/render_view.h" | 13 #include "content/public/renderer/render_view.h" |
14 #include "crypto/nss_util.h" | 14 #include "crypto/nss_util.h" |
15 #include "third_party/WebKit/public/platform/WebColor.h" | 15 #include "third_party/WebKit/public/platform/WebColor.h" |
16 #include "third_party/WebKit/public/web/WebSettings.h" | 16 #include "third_party/WebKit/public/web/WebSettings.h" |
17 #include "third_party/WebKit/public/web/WebView.h" | 17 #include "third_party/WebKit/public/web/WebView.h" |
18 | 18 |
19 namespace chromecast { | 19 namespace chromecast { |
20 namespace shell { | 20 namespace shell { |
21 | 21 |
(...skipping 27 matching lines...) Expand all Loading... |
49 } | 49 } |
50 | 50 |
51 void CastContentRendererClient::AddKeySystems( | 51 void CastContentRendererClient::AddKeySystems( |
52 std::vector<content::KeySystemInfo>* key_systems) { | 52 std::vector<content::KeySystemInfo>* key_systems) { |
53 AddChromecastKeySystems(key_systems); | 53 AddChromecastKeySystems(key_systems); |
54 AddChromecastPlatformKeySystems(key_systems); | 54 AddChromecastPlatformKeySystems(key_systems); |
55 } | 55 } |
56 | 56 |
57 } // namespace shell | 57 } // namespace shell |
58 } // namespace chromecast | 58 } // namespace chromecast |
OLD | NEW |