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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/externs.js

Issue 2128093004: DevTools: Add color swatches to Sources panel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First iteration Created 4 years, 5 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 | third_party/WebKit/Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 * @param {boolean=} caseInsensitive 578 * @param {boolean=} caseInsensitive
579 */ 579 */
580 match: function(pattern, consume, caseInsensitive) { }, 580 match: function(pattern, consume, caseInsensitive) { },
581 next: function() { }, 581 next: function() { },
582 peek: function() { }, 582 peek: function() { },
583 skipTo: function(ch) { }, 583 skipTo: function(ch) { },
584 skipToEnd: function() { }, 584 skipToEnd: function() { },
585 sol: function() { } 585 sol: function() { }
586 } 586 }
587 587
588 /** @constructor */
589 CodeMirror.TextMarker = function(doc, type) { }
590 CodeMirror.TextMarker.prototype = {
591 clear: function() { }
592 }
593
588 /** @type {Object.<string, !Object.<string, string>>} */ 594 /** @type {Object.<string, !Object.<string, string>>} */
589 CodeMirror.keyMap; 595 CodeMirror.keyMap;
590 596
591 /** @type {{scrollLeft: number, scrollTop: number}} */ 597 /** @type {{scrollLeft: number, scrollTop: number}} */
592 CodeMirror.doc; 598 CodeMirror.doc;
593 599
594 /** @type {boolean} */ 600 /** @type {boolean} */
595 window.dispatchStandaloneTestRunnerMessages; 601 window.dispatchStandaloneTestRunnerMessages;
596 602
597 /** 603 /**
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 this.type; 750 this.type;
745 /** @type {string} */ 751 /** @type {string} */
746 this.syntax; 752 this.syntax;
747 /** @type {!Gonzales.Location} */ 753 /** @type {!Gonzales.Location} */
748 this.start; 754 this.start;
749 /** @type {!Gonzales.Location} */ 755 /** @type {!Gonzales.Location} */
750 this.end; 756 this.end;
751 /** @type {(string|!Array<!Gonzales.Node>)} */ 757 /** @type {(string|!Array<!Gonzales.Node>)} */
752 this.content; 758 this.content;
753 } 759 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698