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

Side by Side Diff: third_party/WebKit/Source/core/streams/CommonStrings.js

Issue 2498983002: ReadableStream and WritableStream share strings (Closed)
Patch Set: Rebase to fix patch errors and fix typo Created 4 years 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 | « build_overrides/v8.gni ('k') | third_party/WebKit/Source/core/streams/ReadableStream.js » ('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 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // User-visible strings shared between ReadableStream and WritableStream.
6
7 (function(global, binding, v8) {
8 'use strict';
9
10 binding.streamErrors = {
11 illegalInvocation: 'Illegal invocation',
12 illegalConstructor: 'Illegal constructor',
13 invalidType: 'Invalid type is specified',
14 invalidSize: 'The return value of a queuing strategy\'s size function must b e a finite, non-NaN, non-negative number',
15 sizeNotAFunction: 'A queuing strategy\'s size property must be a function',
16 invalidHWM: 'A queueing strategy\'s highWaterMark property must be a nonnega tive, non-NaN number',
17 };
18 });
OLDNEW
« no previous file with comments | « build_overrides/v8.gni ('k') | third_party/WebKit/Source/core/streams/ReadableStream.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698