| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Set of scripts required by web layer backed up by WKWebView. | 5 // Set of scripts required by web layer backed up by WKWebView. |
| 6 goog.provide('__crWeb.webBundle'); | 6 goog.provide('__crWeb.webBundle'); |
| 7 | 7 |
| 8 goog.require('__crWeb.console'); | 8 goog.require('__crWeb.console'); |
| 9 goog.require('__crWeb.contextMenu'); | 9 goog.require('__crWeb.contextMenu'); |
| 10 goog.require('__crWeb.core'); | 10 goog.require('__crWeb.core'); |
| 11 goog.require('__crWeb.dialogOverrides'); | 11 goog.require('__crWeb.dialogOverrides'); |
| 12 goog.require('__crWeb.form'); |
| 13 goog.require('__crWeb.navigation'); |
| 14 goog.require('__crWeb.scrollWorkaround'); |
| OLD | NEW |