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

Side by Side Diff: chrome/browser/extensions/chrome_content_browser_client_extensions_part.cc

Issue 1988613005: ppapi: PPB_VpnProvider: Implement Service Helper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@vpn-permission
Patch Set: Refactor patch. Communication now handled using ContentBrowserClient. Created 4 years, 6 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698