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

Side by Side Diff: Source/devtools/front_end/screencast/ScreencastView.js

Issue 756913002: DevTools: Rename WI.Color's toString(format) -> asString(format) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix tests Created 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 }, 518 },
519 519
520 /** 520 /**
521 * @param {!DOMAgent.RGBA} color 521 * @param {!DOMAgent.RGBA} color
522 * @return {string} 522 * @return {string}
523 */ 523 */
524 _cssColor: function(color) 524 _cssColor: function(color)
525 { 525 {
526 if (!color) 526 if (!color)
527 return "transparent"; 527 return "transparent";
528 return WebInspector.Color.fromRGBA([color.r, color.g, color.b, color.a]) .toString(WebInspector.Color.Format.RGBA) || ""; 528 return WebInspector.Color.fromRGBA([color.r, color.g, color.b, color.a]) .asString(WebInspector.Color.Format.RGBA) || "";
529 }, 529 },
530 530
531 /** 531 /**
532 * @param {!DOMAgent.Quad} quad 532 * @param {!DOMAgent.Quad} quad
533 * @return {!CanvasRenderingContext2D} 533 * @return {!CanvasRenderingContext2D}
534 */ 534 */
535 _quadToPath: function(quad) 535 _quadToPath: function(quad)
536 { 536 {
537 this._context.beginPath(); 537 this._context.beginPath();
538 this._context.moveTo(quad[0], quad[1]); 538 this._context.moveTo(quad[0], quad[1]);
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 return; 859 return;
860 this._maxDisplayedProgress = progress; 860 this._maxDisplayedProgress = progress;
861 this._displayProgress(progress); 861 this._displayProgress(progress);
862 }, 862 },
863 863
864 _displayProgress: function(progress) 864 _displayProgress: function(progress)
865 { 865 {
866 this._element.style.width = (100 * progress) + "%"; 866 this._element.style.width = (100 * progress) + "%";
867 } 867 }
868 }; 868 };
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/StylesSidebarPane.js ('k') | Source/devtools/front_end/timeline/CountersGraph.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698