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

Side by Side Diff: webkit/renderer/compositor_bindings/web_compositing_reasons.cc

Issue 23455060: mix-blend-mode implementation for accelerated layers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added compositor_bindungs Created 7 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/port.h" 6 #include "base/port.h"
7 #include "cc/layers/compositing_reasons.h" 7 #include "cc/layers/compositing_reasons.h"
8 #include "third_party/WebKit/public/platform/WebCompositingReasons.h" 8 #include "third_party/WebKit/public/platform/WebCompositingReasons.h"
9 9
10 #define COMPILE_ASSERT_MATCHING_UINT64(cc_name, webkit_name) \ 10 #define COMPILE_ASSERT_MATCHING_UINT64(cc_name, webkit_name) \
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 cc::kCompositingReasonLayerForMask, 138 cc::kCompositingReasonLayerForMask,
139 WebKit::CompositingReasonLayerForMask); 139 WebKit::CompositingReasonLayerForMask);
140 140
141 COMPILE_ASSERT_MATCHING_UINT64( 141 COMPILE_ASSERT_MATCHING_UINT64(
142 cc::kCompositingReasonOverflowScrollingParent, 142 cc::kCompositingReasonOverflowScrollingParent,
143 WebKit::CompositingReasonOverflowScrollingParent); 143 WebKit::CompositingReasonOverflowScrollingParent);
144 144
145 COMPILE_ASSERT_MATCHING_UINT64( 145 COMPILE_ASSERT_MATCHING_UINT64(
146 cc::kCompositingReasonOutOfFlowClipping, 146 cc::kCompositingReasonOutOfFlowClipping,
147 WebKit::CompositingReasonOutOfFlowClipping); 147 WebKit::CompositingReasonOutOfFlowClipping);
148
149 COMPILE_ASSERT_MATCHING_UINT64(
150 cc::kCompositingReasonIsolateCompositedDescendants,
151 WebKit::CompositingReasonIsolateCompositedDescendants);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698