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

Side by Side Diff: content/public/common/content_client.cc

Issue 1907263003: media: Set MediaClientAndroid in the GPU process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/common/content_client.h" 5 #include "content/public/common/content_client.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/strings/string_piece.h" 8 #include "base/strings/string_piece.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "content/public/common/origin_util.h" 10 #include "content/public/common/origin_util.h"
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 } 120 }
121 121
122 base::StringPiece ContentClient::GetOriginTrialPublicKey() { 122 base::StringPiece ContentClient::GetOriginTrialPublicKey() {
123 return base::StringPiece(); 123 return base::StringPiece();
124 } 124 }
125 125
126 #if defined(OS_ANDROID) 126 #if defined(OS_ANDROID)
127 bool ContentClient::UsingSynchronousCompositing() { 127 bool ContentClient::UsingSynchronousCompositing() {
128 return false; 128 return false;
129 } 129 }
130
131 media::MediaClientAndroid* ContentClient::GetMediaClientAndroid() {
132 return nullptr;
133 }
130 #endif // OS_ANDROID 134 #endif // OS_ANDROID
131 135
132 } // namespace content 136 } // namespace content
OLDNEW
« content/public/common/content_client.h ('K') | « content/public/common/content_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698