Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SyncCallbacks_h | 5 #ifndef SyncCallbacks_h |
| 6 #define SyncCallbacks_h | 6 #define SyncCallbacks_h |
| 7 | 7 |
| 8 #include "core/dom/DOMException.h" | |
|
tasak
2015/04/30 07:02:54
modules.SyncCallbacks.obj : error LNK2019: unresol
| |
| 8 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 9 #include "public/platform/WebCallbacks.h" | 10 #include "public/platform/WebCallbacks.h" |
| 10 #include "public/platform/modules/background_sync/WebSyncProvider.h" | 11 #include "public/platform/modules/background_sync/WebSyncProvider.h" |
| 11 #include "public/platform/modules/background_sync/WebSyncRegistration.h" | 12 #include "public/platform/modules/background_sync/WebSyncRegistration.h" |
| 12 #include "wtf/Noncopyable.h" | 13 #include "wtf/Noncopyable.h" |
| 13 #include "wtf/PassRefPtr.h" | 14 #include "wtf/PassRefPtr.h" |
| 14 #include "wtf/RefPtr.h" | 15 #include "wtf/RefPtr.h" |
| 15 | 16 |
| 16 namespace blink { | 17 namespace blink { |
| 17 | 18 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 72 void onError(WebSyncError*) override; | 73 void onError(WebSyncError*) override; |
| 73 | 74 |
| 74 private: | 75 private: |
| 75 RefPtrWillBePersistent<ScriptPromiseResolver> m_resolver; | 76 RefPtrWillBePersistent<ScriptPromiseResolver> m_resolver; |
| 76 Persistent<ServiceWorkerRegistration> m_serviceWorkerRegistration; | 77 Persistent<ServiceWorkerRegistration> m_serviceWorkerRegistration; |
| 77 }; | 78 }; |
| 78 | 79 |
| 79 } // namespace blink | 80 } // namespace blink |
| 80 | 81 |
| 81 #endif // SyncCallbacks_h | 82 #endif // SyncCallbacks_h |
| OLD | NEW |