aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-11 07:02:06 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-11 07:02:06 +0000
commit63ba31948392a56c191607d62a2414f16253e47b (patch)
treea2ad62b797b1f84ebd24b4416145661a126f31e3 /experimental
parent773f8e24214991332eaf903e72c13dca7d78d40d (diff)
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@12617 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental')
-rw-r--r--experimental/ChromeUtils/SkBorder.cpp5
-rw-r--r--experimental/ChromeUtils/SkBorder.h20
2 files changed, 12 insertions, 13 deletions
diff --git a/experimental/ChromeUtils/SkBorder.cpp b/experimental/ChromeUtils/SkBorder.cpp
index f6caa5796a..fad27210fc 100644
--- a/experimental/ChromeUtils/SkBorder.cpp
+++ b/experimental/ChromeUtils/SkBorder.cpp
@@ -18,8 +18,8 @@ SkBorder::SkBorder(SkPaint& p, SkScalar width, BorderStyle style)
}
SkBorder::SkBorder(const SkPaint paints[4],
- const SkScalar widths[4],
- const BorderStyle styles[4])
+ const SkScalar widths[4],
+ const BorderStyle styles[4])
: fFlags(0) {
for (int i = 0; i < 4; ++i) {
fPaints[i] = paints[i];
@@ -28,4 +28,3 @@ SkBorder::SkBorder(const SkPaint paints[4],
memcpy(fWidths, widths, sizeof(fWidths));
memcpy(fStyles, styles, sizeof(fStyles));
}
-
diff --git a/experimental/ChromeUtils/SkBorder.h b/experimental/ChromeUtils/SkBorder.h
index 78e4f6a549..e9d8774b0c 100644
--- a/experimental/ChromeUtils/SkBorder.h
+++ b/experimental/ChromeUtils/SkBorder.h
@@ -19,34 +19,34 @@
class SkBorder {
public:
enum BorderStyle {
- /**
+ /**
*/
kNone_BorderStyle,
- /**
+ /**
*/
kHidden_BorderStyle,
- /**
+ /**
*/
kDotted_BorderStyle,
- /**
+ /**
*/
kDashed_BorderStyle,
- /**
+ /**
*/
kSolid_BorderStyle,
- /**
+ /**
*/
kDouble_BorderStyle,
- /**
+ /**
*/
kGroove_BorderStyle,
- /**
+ /**
*/
kRidge_BorderStyle,
- /**
+ /**
*/
kInset_BorderStyle,
- /**
+ /**
*/
kOutset_BorderStyle,
};