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

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

Issue 2466123002: DevTools: reformat front-end code to match chromium style. (Closed)
Patch Set: Created 4 years, 1 month 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
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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 140
141 /** 141 /**
142 * @return {!WebInspector.Widget} 142 * @return {!WebInspector.Widget}
143 */ 143 */
144 get view() 144 get view()
145 { 145 {
146 return this._tabbedPane; 146 return this._tabbedPane;
147 }, 147 },
148 148
149 /** 149 /**
150 * @type {!WebInspector.Widget} 150 * @return {?WebInspector.Widget}
151 */ 151 */
152 get visibleView() 152 get visibleView()
153 { 153 {
154 return this._tabbedPane.visibleView; 154 return this._tabbedPane.visibleView;
155 }, 155 },
156 156
157 /** 157 /**
158 * @return {!Array.<!WebInspector.Widget>} 158 * @return {!Array.<!WebInspector.Widget>}
159 */ 159 */
160 fileViews: function() 160 fileViews: function()
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 /** 850 /**
851 * @override 851 * @override
852 * @param {string} tabId 852 * @param {string} tabId
853 * @param {!WebInspector.ContextMenu} contextMenu 853 * @param {!WebInspector.ContextMenu} contextMenu
854 */ 854 */
855 onContextMenu: function(tabId, contextMenu) 855 onContextMenu: function(tabId, contextMenu)
856 { 856 {
857 this._editorContainer._onContextMenu(tabId, contextMenu); 857 this._editorContainer._onContextMenu(tabId, contextMenu);
858 } 858 }
859 }; 859 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698