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

Side by Side Diff: Source/modules/background_sync/SyncCallbacks.h

Issue 1118653002: Componentization: add toV8(void*,...) to check function overload mismatch. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698