| 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 "chrome/browser/extensions/chrome_content_browser_client_extensions_par
t.h" | 5 #include "chrome/browser/extensions/chrome_content_browser_client_extensions_par
t.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 #if defined(ENABLE_WEBRTC) | 626 #if defined(ENABLE_WEBRTC) |
| 627 command_line->AppendSwitch(::switches::kEnableWebRtcHWH264Encoding); | 627 command_line->AppendSwitch(::switches::kEnableWebRtcHWH264Encoding); |
| 628 #endif | 628 #endif |
| 629 if (base::CommandLine::ForCurrentProcess()->HasSwitch( | 629 if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 630 switches::kEnableMojoSerialService)) { | 630 switches::kEnableMojoSerialService)) { |
| 631 command_line->AppendSwitch(switches::kEnableMojoSerialService); | 631 command_line->AppendSwitch(switches::kEnableMojoSerialService); |
| 632 } | 632 } |
| 633 } | 633 } |
| 634 } | 634 } |
| 635 | 635 |
| 636 content::VpnServiceProxy* |
| 637 ChromeContentBrowserClientExtensionsPart::GetVpnServiceProxy( |
| 638 content::BrowserContext* browser_context) { |
| 639 return nullptr; |
| 640 } |
| 641 |
| 636 } // namespace extensions | 642 } // namespace extensions |
| OLD | NEW |