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

Unified Diff: cc/proto/skregion.proto

Issue 1492533003: Change Skia-related proto enums to uppercase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix another DIFFERENCE Created 4 years, 8 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
« no previous file with comments | « cc/proto/skia_conversions.cc ('k') | cc/proto/skxfermode.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/proto/skregion.proto
diff --git a/cc/proto/skregion.proto b/cc/proto/skregion.proto
index 1f6b337e9b39c5e926b1ff497263b46687c0b760..d45feddf9e2432b23af01d2d52360491fede415e 100644
--- a/cc/proto/skregion.proto
+++ b/cc/proto/skregion.proto
@@ -10,11 +10,11 @@ package cc.proto;
message SkRegion {
enum Op {
- Op_Difference = 0;
- Op_Intersect = 1;
- Op_Union = 2;
- Op_XOR = 3;
- Op_ReverseDifference = 4;
- Op_Replace = 5;
+ DIFFERENCE_ = 0; // On Windows, winuser.h defines DIFFERENCE.
+ INTERSECT = 1;
+ UNION = 2;
+ XOR = 3;
+ REVERSE_DIFFERENCE = 4;
+ REPLACE = 5;
}
-}
+}
« no previous file with comments | « cc/proto/skia_conversions.cc ('k') | cc/proto/skxfermode.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698