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

Unified Diff: generated/googleapis/lib/mapsengine/v1.dart

Issue 698403003: Api roll 5: 2014-11-05 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 1 month 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: generated/googleapis/lib/mapsengine/v1.dart
diff --git a/generated/googleapis/lib/mapsengine/v1.dart b/generated/googleapis/lib/mapsengine/v1.dart
index 9ed63aacfcd9faf2129d56f7f18bb908a57d9440..a0cf268d16d6f73aeecdc000abcf25fd6228cba7 100644
--- a/generated/googleapis/lib/mapsengine/v1.dart
+++ b/generated/googleapis/lib/mapsengine/v1.dart
@@ -7160,6 +7160,9 @@ class PolygonStyle {
*/
Color fill;
+ /** Label style for the polygon. */
+ LabelStyle label;
+
/** Border of the polygon. 0 < border.width <= 10. */
Border stroke;
@@ -7170,6 +7173,9 @@ class PolygonStyle {
if (_json.containsKey("fill")) {
fill = new Color.fromJson(_json["fill"]);
}
+ if (_json.containsKey("label")) {
+ label = new LabelStyle.fromJson(_json["label"]);
+ }
if (_json.containsKey("stroke")) {
stroke = new Border.fromJson(_json["stroke"]);
}
@@ -7180,6 +7186,9 @@ class PolygonStyle {
if (fill != null) {
_json["fill"] = (fill).toJson();
}
+ if (label != null) {
+ _json["label"] = (label).toJson();
+ }
if (stroke != null) {
_json["stroke"] = (stroke).toJson();
}

Powered by Google App Engine
This is Rietveld 408576698