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

Unified Diff: ui/gl/gl_context_egl.cc

Issue 12223064: base: Fix parsing and add dalvik-heap-limit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove Android specific path. Created 7 years, 10 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
« content/common/gpu/gpu_memory_manager.cc ('K') | « ui/gl/gl_context_egl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_context_egl.cc
diff --git a/ui/gl/gl_context_egl.cc b/ui/gl/gl_context_egl.cc
index f8460d339129ed5dfb28d562c7df433e4af4e83c..2c8ef95f7db15b8bea3d9349d3a5de3c289fdcb2 100644
--- a/ui/gl/gl_context_egl.cc
+++ b/ui/gl/gl_context_egl.cc
@@ -182,4 +182,12 @@ GLContextEGL::~GLContextEGL() {
Destroy();
}
+#ifndef OS_ANDROID
+bool GLContextEGL::GetTotalGpuMemory(size_t* bytes) {
ccameron 2013/02/12 01:56:23 Nit: Should this be #if !defined(OS_ANDROID)?
+ DCHECK(bytes);
+ *bytes = 0;
+ return false;
+}
+#endif
+
} // namespace gfx
« content/common/gpu/gpu_memory_manager.cc ('K') | « ui/gl/gl_context_egl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698