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

Side by Side Diff: Source/devtools/front_end/sources/TabbedEditorContainer.js

Issue 1113813002: [DevTools] Rename View to Widget. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 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 unified diff | Download patch | Annotate | Revision Log
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 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 10 *
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 EditorSelected: "EditorSelected", 72 EditorSelected: "EditorSelected",
73 EditorClosed: "EditorClosed" 73 EditorClosed: "EditorClosed"
74 } 74 }
75 75
76 WebInspector.TabbedEditorContainer._tabId = 0; 76 WebInspector.TabbedEditorContainer._tabId = 0;
77 77
78 WebInspector.TabbedEditorContainer.maximalPreviouslyViewedFilesCount = 30; 78 WebInspector.TabbedEditorContainer.maximalPreviouslyViewedFilesCount = 30;
79 79
80 WebInspector.TabbedEditorContainer.prototype = { 80 WebInspector.TabbedEditorContainer.prototype = {
81 /** 81 /**
82 * @return {!WebInspector.View} 82 * @return {!WebInspector.Widget}
83 */ 83 */
84 get view() 84 get view()
85 { 85 {
86 return this._tabbedPane; 86 return this._tabbedPane;
87 }, 87 },
88 88
89 /** 89 /**
90 * @type {!WebInspector.SourceFrame} 90 * @type {!WebInspector.SourceFrame}
91 */ 91 */
92 get visibleView() 92 get visibleView()
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 /** 731 /**
732 * @override 732 * @override
733 * @param {!WebInspector.TabbedPane} tabbedPane 733 * @param {!WebInspector.TabbedPane} tabbedPane
734 * @param {!Array.<string>} ids 734 * @param {!Array.<string>} ids
735 */ 735 */
736 closeTabs: function(tabbedPane, ids) 736 closeTabs: function(tabbedPane, ids)
737 { 737 {
738 this._editorContainer._closeTabs(ids); 738 this._editorContainer._closeTabs(ids);
739 } 739 }
740 } 740 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sources/StyleSheetOutlineDialog.js ('k') | Source/devtools/front_end/sources/sourcesPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698