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

Unified Diff: content/public/common/gpu_info.cc

Issue 9655017: Implement WebKitPlatformSupport::canAccelerate2dCanvas (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix clang warning about inline virtual function body Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/gpu_info.cc
diff --git a/content/public/common/gpu_info.cc b/content/public/common/gpu_info.cc
index b4e17f6d5a2bed88c9973a31b0edb5d6bf6e45b5..d7b1e350e26d4a7500dc7a3555b03db1e2c39a64 100644
--- a/content/public/common/gpu_info.cc
+++ b/content/public/common/gpu_info.cc
@@ -11,7 +11,8 @@ GPUInfo::GPUInfo()
optimus(false),
vendor_id(0),
device_id(0),
- can_lose_context(false) {
+ can_lose_context(false),
+ software_rendering(false) {
}
GPUInfo::~GPUInfo() { }

Powered by Google App Engine
This is Rietveld 408576698