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

Side by Side Diff: third_party/WebKit/Source/modules/push_messaging/PushController.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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 PushController_h 5 #ifndef PushController_h
6 #define PushController_h 6 #define PushController_h
7 7
8 #include "core/frame/LocalFrame.h" 8 #include "core/frame/LocalFrame.h"
9 #include "modules/ModulesExport.h" 9 #include "modules/ModulesExport.h"
10 #include "platform/Supplementable.h" 10 #include "platform/Supplementable.h"
11 #include "wtf/Forward.h" 11 #include "platform/wtf/Forward.h"
12 #include "wtf/Noncopyable.h" 12 #include "platform/wtf/Noncopyable.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class WebPushClient; 16 class WebPushClient;
17 17
18 class PushController final : public GarbageCollected<PushController>, 18 class PushController final : public GarbageCollected<PushController>,
19 public Supplement<LocalFrame> { 19 public Supplement<LocalFrame> {
20 USING_GARBAGE_COLLECTED_MIXIN(PushController); 20 USING_GARBAGE_COLLECTED_MIXIN(PushController);
21 WTF_MAKE_NONCOPYABLE(PushController); 21 WTF_MAKE_NONCOPYABLE(PushController);
22 22
(...skipping 13 matching lines...) Expand all
36 WebPushClient* Client() const { return client_; } 36 WebPushClient* Client() const { return client_; }
37 37
38 WebPushClient* client_; 38 WebPushClient* client_;
39 }; 39 };
40 40
41 MODULES_EXPORT void ProvidePushControllerTo(LocalFrame&, WebPushClient*); 41 MODULES_EXPORT void ProvidePushControllerTo(LocalFrame&, WebPushClient*);
42 42
43 } // namespace blink 43 } // namespace blink
44 44
45 #endif // PushController_h 45 #endif // PushController_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698