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

Side by Side Diff: Source/modules/indexeddb/IDBFactory.h

Issue 67463006: IndexedDB: Simplify WebIDBCallbacks exports, strip IDBFactoryBackend (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 PassRefPtr<IDBOpenDBRequest> open(ExecutionContext*, const String& name, uns igned long long version, ExceptionState&); 57 PassRefPtr<IDBOpenDBRequest> open(ExecutionContext*, const String& name, uns igned long long version, ExceptionState&);
58 PassRefPtr<IDBOpenDBRequest> deleteDatabase(ExecutionContext*, const String& name, ExceptionState&); 58 PassRefPtr<IDBOpenDBRequest> deleteDatabase(ExecutionContext*, const String& name, ExceptionState&);
59 59
60 short cmp(ExecutionContext*, const ScriptValue& first, const ScriptValue& se cond, ExceptionState&); 60 short cmp(ExecutionContext*, const ScriptValue& first, const ScriptValue& se cond, ExceptionState&);
61 61
62 private: 62 private:
63 IDBFactory(IDBFactoryBackendInterface*); 63 IDBFactory(IDBFactoryBackendInterface*);
64 64
65 PassRefPtr<IDBOpenDBRequest> openInternal(ExecutionContext*, const String& n ame, int64_t version, ExceptionState&); 65 PassRefPtr<IDBOpenDBRequest> openInternal(ExecutionContext*, const String& n ame, int64_t version, ExceptionState&);
66 66
67 RefPtr<IDBFactoryBackendInterface> m_backend; 67 RefPtr<IDBFactoryBackendInterface> m_permissionClient;
68 }; 68 };
69 69
70 } // namespace WebCore 70 } // namespace WebCore
71 71
72 #endif // IDBFactory_h 72 #endif // IDBFactory_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698