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

Unified Diff: sky/sdk/lib/framework/painting/shadows.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports Created 5 years, 6 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 | « sky/sdk/lib/framework/painting/box_painter.dart ('k') | sky/sdk/lib/framework/rendering/block.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/painting/shadows.dart
diff --git a/sky/sdk/lib/framework/painting/shadows.dart b/sky/sdk/lib/framework/painting/shadows.dart
deleted file mode 100644
index 291843011ba8768533d635ede162dc5f28073425..0000000000000000000000000000000000000000
--- a/sky/sdk/lib/framework/painting/shadows.dart
+++ /dev/null
@@ -1,31 +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.
-
-import 'dart:sky' as sky;
-
-/// Helper class to build a Paint DrawLooper that adds shadows to the Paint's
-/// operation.
-class ShadowDrawLooperBuilder {
- var builder_ = new sky.LayerDrawLooperBuilder();
-
- void addShadow(sky.Size offset, sky.Color color, double blur) {
- builder_.addLayerOnTop(
- new sky.DrawLooperLayerInfo()
- ..setPaintBits(sky.PaintBits.all)
- ..setOffset(offset.toPoint())
- ..setColorMode(sky.TransferMode.srcMode),
- (sky.Paint layerPaint) {
- layerPaint.color = color;
- layerPaint.setMaskFilter(
- new sky.MaskFilter.blur(sky.BlurStyle.normal,
- blur,
- highQuality: true));
- });
- }
-
- sky.DrawLooper build() {
- builder_.addLayerOnTop(new sky.DrawLooperLayerInfo(), (_) {});
- return builder_.build();
- }
-}
« no previous file with comments | « sky/sdk/lib/framework/painting/box_painter.dart ('k') | sky/sdk/lib/framework/rendering/block.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698