Index: chrome/browser/resources/settings/settings.js |
diff --git a/chrome/browser/resources/settings/settings.js b/chrome/browser/resources/settings/settings.js |
deleted file mode 100644 |
index bb59abb216d3d78b622ace0c7baff3db4087f197..0000000000000000000000000000000000000000 |
--- a/chrome/browser/resources/settings/settings.js |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-cr.exportPath('settings'); |
-assert(!settings.defaultResourceLoaded, |
- 'settings.js run twice. You probably have an invalid import.'); |
-/** Global defined when the main Settings script runs. */ |
-settings.defaultResourceLoaded = true; |
- |
-/** |
- * @fileoverview |
- * 'cr-settings' is the main MD-Settings element, combining the UI and models. |
- * |
- * Example: |
- * |
- * <cr-settings></cr-settings> |
- */ |
-Polymer({ |
- is: 'cr-settings', |
- |
- /** @override */ |
- created: function() { |
- settings.initializeRouteFromUrl(); |
- }, |
- |
- /** @override */ |
- ready: function() { |
- this.$.ui.directionDelegate = new settings.DirectionDelegateImpl; |
- }, |
-}); |