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

Unified Diff: chrome/browser/resources/net_internals/resizable_vertical_split_view.js

Issue 7564029: Use javascript strict mode throughout a number of net-internals files. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix one more var Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/net_internals/resizable_vertical_split_view.js
===================================================================
--- chrome/browser/resources/net_internals/resizable_vertical_split_view.js (revision 95298)
+++ chrome/browser/resources/net_internals/resizable_vertical_split_view.js (working copy)
@@ -25,8 +25,10 @@
* @param {!DivView} sizerView The widget that will serve as draggable divider.
*/
var ResizableVerticalSplitView = (function() {
+ 'use strict';
+
// Minimum width to size panels to, in pixels.
- const MIN_PANEL_WIDTH = 50;
+ var MIN_PANEL_WIDTH = 50;
// We inherit from View.
var superClass = View;
« no previous file with comments | « chrome/browser/resources/net_internals/proxy_view.js ('k') | chrome/browser/resources/net_internals/service_providers_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698