Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / sdk / ContentProviders.js
index 6c44b9c..9abb379 100644 (file)
@@ -263,61 +263,3 @@ WebInspector.CompilerSourceMappingContentProvider.prototype = {
         }
     }
 }
-
-/**
- * @constructor
- * @implements {WebInspector.ContentProvider}
- * @param {!WebInspector.ResourceType} contentType
- * @param {string} content
- */
-WebInspector.StaticContentProvider = function(contentType, content)
-{
-    this._content = content;
-    this._contentType = contentType;
-}
-
-WebInspector.StaticContentProvider.prototype = {
-    /**
-     * @return {string}
-     */
-    contentURL: function()
-    {
-        return "";
-    },
-
-    /**
-     * @return {!WebInspector.ResourceType}
-     */
-    contentType: function()
-    {
-        return this._contentType;
-    },
-
-    /**
-     * @param {function(?string)} callback
-     */
-    requestContent: function(callback)
-    {
-        callback(this._content);
-    },
-
-    /**
-     * @param {string} query
-     * @param {boolean} caseSensitive
-     * @param {boolean} isRegex
-     * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
-     */
-    searchInContent: function(query, caseSensitive, isRegex, callback)
-    {
-        /**
-         * @this {WebInspector.StaticContentProvider}
-         */
-        function performSearch()
-        {
-            callback(WebInspector.ContentProvider.performSearchInContent(this._content, query, caseSensitive, isRegex));
-        }
-
-        // searchInContent should call back later.
-        window.setTimeout(performSearch.bind(this), 0);
-    }
-}