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

Unified Diff: third_party/WebKit/public/platform/WebCompositorMutableProperties.h

Issue 1599673002: compositor-worker: Remove code from cc_blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix blink_platform_unittests Created 4 years, 11 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: third_party/WebKit/public/platform/WebCompositorMutableProperties.h
diff --git a/third_party/WebKit/public/platform/WebCompositorMutableProperties.h b/third_party/WebKit/public/platform/WebCompositorMutableProperties.h
deleted file mode 100644
index 63b37973bb7a388aac0b5b0d38a190e8fafb845e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/platform/WebCompositorMutableProperties.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WebCompositorMutableProperties_h
-#define WebCompositorMutableProperties_h
-
-namespace blink {
-
-// TODO(vollick): we should not need a parallel enum. This must be kept in sync
-// with the cc::MutableProperty enum.
-enum WebCompositorMutableProperty {
- WebCompositorMutablePropertyNone = 0,
- WebCompositorMutablePropertyOpacity = 1 << 0,
- WebCompositorMutablePropertyScrollLeft = 1 << 1,
- WebCompositorMutablePropertyScrollTop = 1 << 2,
- WebCompositorMutablePropertyTransform = 1 << 3,
-};
-
-const int kNumWebCompositorMutableProperties = 4;
-
-} // namespace blink
-
-#endif // WebCompositorMutableProperties_h

Powered by Google App Engine
This is Rietveld 408576698