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

Unified Diff: remoting/base/util.cc

Issue 2148743005: [Remoting Android] Cursor & Cursor Feedback for OpenGL Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move parameters around Created 4 years, 5 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: remoting/base/util.cc
diff --git a/remoting/base/util.cc b/remoting/base/util.cc
index c72f3a8105fd0bd0a0a64041490f2dda23098b20..bb5a164892cb219516e95b2458652b06ee55ab65 100644
--- a/remoting/base/util.cc
+++ b/remoting/base/util.cc
@@ -14,8 +14,6 @@
namespace remoting {
-enum { kBytesPerPixelRGB32 = 4 };
-
static int CalculateRGBOffset(int x, int y, int stride) {
return stride * y + kBytesPerPixelRGB32 * x;
}

Powered by Google App Engine
This is Rietveld 408576698