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

Side by Side Diff: Source/devtools/front_end/network/NetworkItemView.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 * @extends {WebInspector.RequestView} 122 * @extends {WebInspector.RequestView}
123 * @param {!WebInspector.NetworkRequest} request 123 * @param {!WebInspector.NetworkRequest} request
124 */ 124 */
125 WebInspector.RequestContentView = function(request) 125 WebInspector.RequestContentView = function(request)
126 { 126 {
127 WebInspector.RequestView.call(this, request); 127 WebInspector.RequestView.call(this, request);
128 } 128 }
129 129
130 WebInspector.RequestContentView.prototype = { 130 WebInspector.RequestContentView.prototype = {
131 /** 131 /**
132 * @return {!WebInspector.View} 132 * @return {!WebInspector.Widget}
133 */ 133 */
134 get innerView() 134 get innerView()
135 { 135 {
136 return this._innerView; 136 return this._innerView;
137 }, 137 },
138 138
139 set innerView(innerView) 139 set innerView(innerView)
140 { 140 {
141 this._innerView = innerView; 141 this._innerView = innerView;
142 }, 142 },
(...skipping 22 matching lines...) Expand all
165 this.request.requestContent(callback.bind(this)); 165 this.request.requestContent(callback.bind(this));
166 }, 166 },
167 167
168 contentLoaded: function() 168 contentLoaded: function()
169 { 169 {
170 // Should be implemented by subclasses. 170 // Should be implemented by subclasses.
171 }, 171 },
172 172
173 __proto__: WebInspector.RequestView.prototype 173 __proto__: WebInspector.RequestView.prototype
174 } 174 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/main/AdvancedApp.js ('k') | Source/devtools/front_end/network/NetworkPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698