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

Side by Side Diff: Source/modules/push_messaging/PushSubscription.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 PushSubscription_h 5 #ifndef PushSubscription_h
6 #define PushSubscription_h 6 #define PushSubscription_h
7 7
8 #include "bindings/core/v8/ScriptPromise.h" 8 #include "bindings/core/v8/ScriptPromise.h"
9 #include "bindings/core/v8/ScriptValue.h" 9 #include "bindings/core/v8/ScriptValue.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
11 #include "core/dom/DOMException.h"
tasak 2015/04/30 07:02:55 modules.PushSubscription.obj : error LNK2001: unre
11 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
12 #include "wtf/text/WTFString.h" 13 #include "wtf/text/WTFString.h"
13 14
14 namespace blink { 15 namespace blink {
15 16
16 class ServiceWorkerRegistration; 17 class ServiceWorkerRegistration;
17 class ScriptPromiseResolver; 18 class ScriptPromiseResolver;
18 class ScriptState; 19 class ScriptState;
19 struct WebPushSubscription; 20 struct WebPushSubscription;
20 21
(...skipping 17 matching lines...) Expand all
38 PushSubscription(const String& endpoint, const String& subscriptionId, Servi ceWorkerRegistration*); 39 PushSubscription(const String& endpoint, const String& subscriptionId, Servi ceWorkerRegistration*);
39 40
40 String m_endpoint; 41 String m_endpoint;
41 String m_subscriptionId; 42 String m_subscriptionId;
42 Member<ServiceWorkerRegistration> m_serviceWorkerRegistration; 43 Member<ServiceWorkerRegistration> m_serviceWorkerRegistration;
43 }; 44 };
44 45
45 } // namespace blink 46 } // namespace blink
46 47
47 #endif // PushSubscription_h 48 #endif // PushSubscription_h
OLDNEW
« Source/modules/background_sync/SyncCallbacks.h ('K') | « Source/modules/cachestorage/Cache.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698