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

Side by Side Diff: experimental/webtry/DESIGN.md

Issue 315643002: Fix etc1 support for SkFiddle. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix SQL Created 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | experimental/webtry/webtry.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Design 1 Design
2 ====== 2 ======
3 3
4 4
5 Overview 5 Overview
6 -------- 6 --------
7 Allows trying out Skia code in the browser. 7 Allows trying out Skia code in the browser.
8 8
9 9
10 Security 10 Security
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 name CHAR(64) DEFAULT '' NOT NULL, 160 name CHAR(64) DEFAULT '' NOT NULL,
161 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, 161 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
162 hash CHAR(64) DEFAULT '' NOT NULL, 162 hash CHAR(64) DEFAULT '' NOT NULL,
163 source_image_id INTEGER DEFAULT 0 NOT NULL, 163 source_image_id INTEGER DEFAULT 0 NOT NULL,
164 hidden INTEGER DEFAULT 0 NOT NULL, 164 hidden INTEGER DEFAULT 0 NOT NULL,
165 165
166 FOREIGN KEY (name) REFERENCES workspace(name), 166 FOREIGN KEY (name) REFERENCES workspace(name),
167 ); 167 );
168 168
169 CREATE TABLE source_images ( 169 CREATE TABLE source_images (
170 id INTEGER PRIMARY KEY NOT NULL, 170 id INTEGER PRIMARY KEY NOT NULL AUTO_INCREMENT,
171 image MEDIUMBLOB DEFAULT '' NOT NULL, -- Stored as PN G. 171 image MEDIUMBLOB DEFAULT '' NOT NULL, -- Stored as PN G.
172 width INTEGER DEFAULT 0 NOT NULL, 172 width INTEGER DEFAULT 0 NOT NULL,
173 height INTEGER DEFAULT 0 NOT NULL, 173 height INTEGER DEFAULT 0 NOT NULL,
174 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, 174 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
175 hidden INTEGER DEFAULT 0 NOT NULL 175 hidden INTEGER DEFAULT 0 NOT NULL
176 ); 176 );
177 177
178 ALTER TABLE webtry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU LL AFTER hash; 178 ALTER TABLE webtry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU LL AFTER hash;
179 ALTER TABLE workspacetry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU LL AFTER hash; 179 ALTER TABLE workspacetry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU LL AFTER hash;
180 180
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 * clike.js - C-like syntax highlighting support 273 * clike.js - C-like syntax highlighting support
274 274
275 Alternatively, we may consider pulling CM as an external dependency at some 275 Alternatively, we may consider pulling CM as an external dependency at some
276 point. 276 point.
277 277
278 Installation 278 Installation
279 ------------ 279 ------------
280 See the README file. 280 See the README file.
281 281
282 282
OLDNEW
« no previous file with comments | « no previous file | experimental/webtry/webtry.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698