OLD | NEW |
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 Loading... |
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 Loading... |
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 }; |
OLD | NEW |