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

Side by Side Diff: experimental/webtry/result.cpp

Issue 688713002: delete webtry from main skia repo; it's been moved to buildbots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « experimental/webtry/res/webtry/sass/webtry.scss ('k') | experimental/webtry/safec » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include "SkCanvas.h"
2 #include "SkData.h"
3 #include "SkForceLinking.h"
4 #include "SkGraphics.h"
5 #include "SkImageEncoder.h"
6 #include "SkImageInfo.h"
7 #include "SkStream.h"
8 #include "SkSurface.h"
9
10 SkBitmap source;
11
12 void draw(SkCanvas* canvas) {
13 #line 1
14 SkPaint p;
15 #line 2
16 p.setColor(SK_ColorRED);
17 #line 3
18 p.setAntiAlias(true);
19 #line 4
20 p.setStyle(SkPaint::kStroke_Style);
21 #line 5
22 p.setStrokeWidth(10);
23 #line 6
24
25 #line 7
26 canvas->drawLine(20, 20, 100, 100, p);
27 #line 8
28
29 }
OLDNEW
« no previous file with comments | « experimental/webtry/res/webtry/sass/webtry.scss ('k') | experimental/webtry/safec » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698