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

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: Address feedback, 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
« ui/gl/gl_context_android.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..52c60e25e8902889995328672bd866fee7a2cdee 100644
--- a/ui/gl/gl_context_egl.cc
+++ b/ui/gl/gl_context_egl.cc
@@ -182,4 +182,12 @@ GLContextEGL::~GLContextEGL() {
Destroy();
}
+#if !defined(OS_ANDROID)
jar (doing other things) 2013/02/14 01:48:41 nit: Given that you didn't ifdef the declaration,
epenner 2013/02/14 04:18:36 The function is defined in the "gl_context_android
+bool GLContextEGL::GetTotalGpuMemory(size_t* bytes) {
+ DCHECK(bytes);
+ *bytes = 0;
+ return false;
+}
+#endif
+
} // namespace gfx
« ui/gl/gl_context_android.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