Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Unified Diff: Source/web/IndexedDBClientImpl.h

Issue 225023020: IDBFactoryBackend -> IndexedDBClient, remove indexeddb/chromium (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rename some lingering 'factory' ferences to 'client' Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/IDBFactoryBackendProxy.cpp ('k') | Source/web/IndexedDBClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/web/IDBFactoryBackendProxy.cpp ('k') | Source/web/IndexedDBClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698