replace all web-view code with webview

This commit is contained in:
Zeke Sikelianos
2016-11-09 15:04:00 -08:00
parent 1085c28612
commit c75a1f08fd
21 changed files with 33 additions and 33 deletions

View File

@@ -88,8 +88,8 @@ if (window.location.protocol === 'chrome-devtools:') {
// Load webview tag implementation.
if (nodeIntegration === 'true' && process.guestInstanceId == null) {
require('./web-view/web-view')
require('./web-view/web-view-attributes')
require('./webview/webview')
require('./webview/webview-attributes')
}
}

View File

@@ -1,8 +1,8 @@
'use strict'
const WebViewImpl = require('./web-view')
const WebViewImpl = require('./webview')
const guestViewInternal = require('./guest-view-internal')
const webViewConstants = require('./web-view-constants')
const webViewConstants = require('./webview-constants')
const {remote} = require('electron')
// Helper function to resolve url set in attribute.

View File

@@ -4,7 +4,7 @@ const {ipcRenderer, remote, webFrame} = require('electron')
const v8Util = process.atomBinding('v8_util')
const guestViewInternal = require('./guest-view-internal')
const webViewConstants = require('./web-view-constants')
const webViewConstants = require('./webview-constants')
const hasProp = {}.hasOwnProperty