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

Side by Side Diff: chromecast/base/cast_sys_info_dummy.cc

Issue 1117813002: Add GL strings to CastSysInfo interface and use to configure GPU (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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/base/cast_sys_info_dummy.h" 5 #include "chromecast/base/cast_sys_info_dummy.h"
6 6
7 namespace chromecast { 7 namespace chromecast {
8 8
9 CastSysInfoDummy::CastSysInfoDummy() { 9 CastSysInfoDummy::CastSysInfoDummy() {
10 } 10 }
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 } 57 }
58 58
59 std::string CastSysInfoDummy::GetWifiInterface() { 59 std::string CastSysInfoDummy::GetWifiInterface() {
60 return ""; 60 return "";
61 } 61 }
62 62
63 std::string CastSysInfoDummy::GetApInterface() { 63 std::string CastSysInfoDummy::GetApInterface() {
64 return ""; 64 return "";
65 } 65 }
66 66
67 std::string CastSysInfoDummy::GetGpuVendor() {
68 return "";
69 }
70
71 std::string CastSysInfoDummy::GetGpuModel() {
72 return "";
73 }
74
67 } // namespace chromecast 75 } // namespace chromecast
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698