Index: Source/web/IndexedDBClientImpl.h |
diff --git a/Source/web/IDBFactoryBackendProxy.h b/Source/web/IndexedDBClientImpl.h |
similarity index 78% |
rename from Source/web/IDBFactoryBackendProxy.h |
rename to Source/web/IndexedDBClientImpl.h |
index 23716fb2ba8e0432ecc074a7b593ff6bc36d7d2a..47ba46d18fe8e2e47d7c35ab37f0eb4fa6cddede 100644 |
--- a/Source/web/IDBFactoryBackendProxy.h |
+++ b/Source/web/IndexedDBClientImpl.h |
@@ -26,10 +26,10 @@ |
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-#ifndef IDBFactoryBackendProxy_h |
-#define IDBFactoryBackendProxy_h |
+#ifndef IndexedDBClientImpl_h |
+#define IndexedDBClientImpl_h |
-#include "modules/indexeddb/chromium/IDBFactoryBackendInterfaceChromium.h" |
+#include "modules/indexeddb/IndexedDBClient.h" |
namespace WebCore { |
class ExecutionContext; |
@@ -37,18 +37,17 @@ class ExecutionContext; |
namespace blink { |
-// FIXME: This is just a permission client at this point. Rename/refactor. |
-class IDBFactoryBackendProxy FINAL : public WebCore::IDBFactoryBackendInterface { |
+class IndexedDBClientImpl FINAL : public WebCore::IndexedDBClient { |
public: |
- static PassRefPtr<WebCore::IDBFactoryBackendInterface> create(); |
- virtual ~IDBFactoryBackendProxy() { } |
+ static PassRefPtr<WebCore::IndexedDBClient> create(); |
+ virtual ~IndexedDBClientImpl() { } |
virtual bool allowIndexedDB(WebCore::ExecutionContext*, const String& name) OVERRIDE; |
private: |
- IDBFactoryBackendProxy() { } |
+ IndexedDBClientImpl() { } |
}; |
} // namespace blink |
-#endif // IDBFactoryBackendProxy_h |
+#endif // IndexedDBClientImpl_h |