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

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 1128453004: Embed a simple Mojo shell in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/public/browser/content_browser_client.h" 5 #include "content/public/browser/content_browser_client.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "content/public/browser/client_certificate_delegate.h" 8 #include "content/public/browser/client_certificate_delegate.h"
9 #include "ui/gfx/image/image_skia.h" 9 #include "ui/gfx/image/image_skia.h"
10 #include "url/gurl.h" 10 #include "url/gurl.h"
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 #endif 344 #endif
345 345
346 #if defined(VIDEO_HOLE) 346 #if defined(VIDEO_HOLE)
347 ExternalVideoSurfaceContainer* 347 ExternalVideoSurfaceContainer*
348 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( 348 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer(
349 WebContents* web_contents) { 349 WebContents* web_contents) {
350 return nullptr; 350 return nullptr;
351 } 351 }
352 #endif 352 #endif
353 353
354 void ContentBrowserClient::ConfigureMojoShell(MojoShellContext* context) {
355 }
356
354 } // namespace content 357 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698