| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef DatabaseClient_h | 31 #ifndef DatabaseClient_h |
| 32 #define DatabaseClient_h | 32 #define DatabaseClient_h |
| 33 | 33 |
| 34 #include "core/page/Page.h" | 34 #include "core/page/Page.h" |
| 35 #include "modules/ModulesExport.h" | 35 #include "modules/ModulesExport.h" |
| 36 #include "platform/Supplementable.h" | 36 #include "platform/Supplementable.h" |
| 37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 38 #include "wtf/Forward.h" | 38 #include "platform/wtf/Forward.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class Database; | 42 class Database; |
| 43 class ExecutionContext; | 43 class ExecutionContext; |
| 44 class InspectorDatabaseAgent; | 44 class InspectorDatabaseAgent; |
| 45 class Page; | 45 class Page; |
| 46 | 46 |
| 47 class MODULES_EXPORT DatabaseClient : public GarbageCollected<DatabaseClient>, | 47 class MODULES_EXPORT DatabaseClient : public GarbageCollected<DatabaseClient>, |
| 48 public Supplement<Page> { | 48 public Supplement<Page> { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 72 | 72 |
| 73 private: | 73 private: |
| 74 Member<InspectorDatabaseAgent> inspector_agent_; | 74 Member<InspectorDatabaseAgent> inspector_agent_; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 MODULES_EXPORT void ProvideDatabaseClientTo(Page&, DatabaseClient*); | 77 MODULES_EXPORT void ProvideDatabaseClientTo(Page&, DatabaseClient*); |
| 78 | 78 |
| 79 } // namespace blink | 79 } // namespace blink |
| 80 | 80 |
| 81 #endif // DatabaseClient_h | 81 #endif // DatabaseClient_h |
| OLD | NEW |