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

Unified Diff: third_party/WebKit/Source/core/css/cssom/LengthValue.idl

Issue 1943733002: Typed CSSOM: Rename LengthValue parse, fromValue and fromDictionary to 'from'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix webexposed test Created 4 years, 7 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 | « third_party/WebKit/Source/core/css/cssom/LengthValue.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/cssom/LengthValue.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/LengthValue.idl b/third_party/WebKit/Source/core/css/cssom/LengthValue.idl
index 611425d2b50b11f7a10ba214667101b4b06edacc..920e81cf5221993a57fc61a5d68e2b46dd5a5dae 100644
--- a/third_party/WebKit/Source/core/css/cssom/LengthValue.idl
+++ b/third_party/WebKit/Source/core/css/cssom/LengthValue.idl
@@ -14,7 +14,7 @@ enum LengthType {
[RaisesException, NewObject] LengthValue multiply(double value);
[RaisesException, NewObject] LengthValue divide(double value);
- [RaisesException, NewObject] static LengthValue parse(DOMString cssString);
- [RaisesException, NewObject] static LengthValue fromValue(double value, LengthType type);
- [RaisesException, NewObject] static LengthValue fromDictionary(CalcDictionary dictionary);
+ [RaisesException, NewObject] static LengthValue from(DOMString cssString);
+ [RaisesException, NewObject] static LengthValue from(double value, LengthType type);
+ [RaisesException, NewObject] static LengthValue from(CalcDictionary dictionary);
};
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/LengthValue.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698