Title: [130518] trunk/Source/WebCore
- Revision
- 130518
- Author
- vse...@chromium.org
- Date
- 2012-10-05 09:37:32 -0700 (Fri, 05 Oct 2012)
Log Message
Unreviewed inspector front-end closure compilaiton fixes.
* inspector/InjectedScriptCanvasModuleSource.js:
* inspector/InjectedScriptExterns.js:
(InjectedScriptHost.prototype.getInternalProperties):
* inspector/front-end/DockController.js:
* inspector/front-end/externs.js:
(InspectorFrontendHostAPI.prototype.requestSetDockSide):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (130517 => 130518)
--- trunk/Source/WebCore/ChangeLog 2012-10-05 16:30:09 UTC (rev 130517)
+++ trunk/Source/WebCore/ChangeLog 2012-10-05 16:37:32 UTC (rev 130518)
@@ -1,3 +1,14 @@
+2012-10-05 Vsevolod Vlasov <vse...@chromium.org>
+
+ Unreviewed inspector front-end closure compilaiton fixes.
+
+ * inspector/InjectedScriptCanvasModuleSource.js:
+ * inspector/InjectedScriptExterns.js:
+ (InjectedScriptHost.prototype.getInternalProperties):
+ * inspector/front-end/DockController.js:
+ * inspector/front-end/externs.js:
+ (InspectorFrontendHostAPI.prototype.requestSetDockSide):
+
2012-10-05 Tab Atkins <jackalm...@gmail.com>
Replace uses of prefixed properties with unprefixed versions in the UA stylesheets
Modified: trunk/Source/WebCore/inspector/InjectedScriptCanvasModuleSource.js (130517 => 130518)
--- trunk/Source/WebCore/inspector/InjectedScriptCanvasModuleSource.js 2012-10-05 16:30:09 UTC (rev 130517)
+++ trunk/Source/WebCore/inspector/InjectedScriptCanvasModuleSource.js 2012-10-05 16:37:32 UTC (rev 130518)
@@ -569,7 +569,7 @@
},
/**
- * @param {Object} value
+ * @param {*} value
*/
setWrappedObject: function(value)
{
@@ -646,7 +646,7 @@
/**
* @param {Object} data
* @param {Cache} cache
- * @return {Resource}
+ * @return {Resource|ReplayableResource}
*/
replay: function(data, cache)
{
@@ -683,7 +683,7 @@
},
/**
- * @param {Object} object
+ * @param {*} object
*/
_bindObjectToResource: function(object)
{
Modified: trunk/Source/WebCore/inspector/InjectedScriptExterns.js (130517 => 130518)
--- trunk/Source/WebCore/inspector/InjectedScriptExterns.js 2012-10-05 16:30:09 UTC (rev 130517)
+++ trunk/Source/WebCore/inspector/InjectedScriptExterns.js 2012-10-05 16:37:32 UTC (rev 130518)
@@ -38,6 +38,7 @@
*/
function InjectedScriptHost() { }
InjectedScriptHost.prototype.storageId = function(object) { }
+InjectedScriptHost.prototype.getInternalProperties = function(object) { }
/**
* @param {Function} func
*/
Modified: trunk/Source/WebCore/inspector/front-end/DockController.js (130517 => 130518)
--- trunk/Source/WebCore/inspector/front-end/DockController.js 2012-10-05 16:30:09 UTC (rev 130517)
+++ trunk/Source/WebCore/inspector/front-end/DockController.js 2012-10-05 16:37:32 UTC (rev 130518)
@@ -144,7 +144,7 @@
/**
* @param {WebInspector.StatusBarButton} button
- * @param {number} state
+ * @param {string} state
*/
_decorateButtonForTargetState: function(button, state)
{
Modified: trunk/Source/WebCore/inspector/front-end/externs.js (130517 => 130518)
--- trunk/Source/WebCore/inspector/front-end/externs.js 2012-10-05 16:30:09 UTC (rev 130517)
+++ trunk/Source/WebCore/inspector/front-end/externs.js 2012-10-05 16:37:32 UTC (rev 130518)
@@ -125,7 +125,7 @@
InspectorFrontendHostAPI.prototype.closeWindow = function() {}
InspectorFrontendHostAPI.prototype.requestAttachWindow = function() {}
InspectorFrontendHostAPI.prototype.requestDetachWindow = function() {}
-InspectorFrontendHostAPI.prototype.requestSetDockSide = function() {}
+InspectorFrontendHostAPI.prototype.requestSetDockSide = function(dockSide) {}
InspectorFrontendHostAPI.prototype.setAttachedWindowHeight = function(height) {}
InspectorFrontendHostAPI.prototype.moveWindowBy = function(x, y) {}
InspectorFrontendHostAPI.prototype.setInjectedScriptForOrigin = function(origin, script) {}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes