Bug 1420218 - Fix copy/paste error. r?mstange draft
authorKartikaya Gupta <kgupta@mozilla.com>
Thu, 23 Nov 2017 12:13:28 -0500
changeset 702696 dee4fddde13bf8ea8e625ef42ea96968748e702c
parent 702588 b6bed1b710c3e22cab49f22f1b5f44d80286bcb9
child 741570 5d6b48e905a077327e755b0a3b05f57d257ef327
push id90598
push userkgupta@mozilla.com
push dateThu, 23 Nov 2017 17:13:50 +0000
reviewersmstange
bugs1420218
milestone59.0a1
Bug 1420218 - Fix copy/paste error. r?mstange MozReview-Commit-ID: BVwciN6L8wq
gfx/webrender_bindings/WebRenderTypes.h
--- a/gfx/webrender_bindings/WebRenderTypes.h
+++ b/gfx/webrender_bindings/WebRenderTypes.h
@@ -739,17 +739,17 @@ struct WrClipId {
   }
 };
 
 // Corresponds to a clip id for a position:sticky clip in webrender. Similar
 // to WrClipId but a separate struct so we don't get them mixed up in C++.
 struct WrStickyId {
   uint64_t id;
 
-  bool operator==(const WrClipId& other) const {
+  bool operator==(const WrStickyId& other) const {
     return id == other.id;
   }
 };
 
 typedef Variant<layers::FrameMetrics::ViewID, WrClipId> ScrollOrClipId;
 
 enum class WebRenderError : int8_t {
   INITIALIZE = 0,