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

Side by Side Diff: third_party/WebKit/Source/modules/presentation/PresentationAvailability.h

Issue 2848963002: Clean up bindings/core/v8 (Part 1) (Closed)
Patch Set: Fix build Created 3 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 PresentationAvailability_h 5 #ifndef PresentationAvailability_h
6 #define PresentationAvailability_h 6 #define PresentationAvailability_h
7 7
8 #include "bindings/core/v8/ActiveScriptWrappable.h"
9 #include "core/dom/SuspendableObject.h" 8 #include "core/dom/SuspendableObject.h"
10 #include "core/events/EventTarget.h" 9 #include "core/events/EventTarget.h"
11 #include "core/page/PageVisibilityObserver.h" 10 #include "core/page/PageVisibilityObserver.h"
12 #include "modules/ModulesExport.h" 11 #include "modules/ModulesExport.h"
13 #include "modules/presentation/PresentationPromiseProperty.h" 12 #include "modules/presentation/PresentationPromiseProperty.h"
13 #include "platform/bindings/ActiveScriptWrappable.h"
14 #include "platform/weborigin/KURL.h" 14 #include "platform/weborigin/KURL.h"
15 #include "platform/wtf/Vector.h" 15 #include "platform/wtf/Vector.h"
16 #include "public/platform/WebURL.h" 16 #include "public/platform/WebURL.h"
17 #include "public/platform/WebVector.h" 17 #include "public/platform/WebVector.h"
18 #include "public/platform/modules/presentation/WebPresentationAvailabilityObserv er.h" 18 #include "public/platform/modules/presentation/WebPresentationAvailabilityObserv er.h"
19 19
20 namespace blink { 20 namespace blink {
21 21
22 class ExecutionContext; 22 class ExecutionContext;
23 23
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 void UpdateListening(); 87 void UpdateListening();
88 88
89 WebVector<WebURL> urls_; 89 WebVector<WebURL> urls_;
90 bool value_; 90 bool value_;
91 State state_; 91 State state_;
92 }; 92 };
93 93
94 } // namespace blink 94 } // namespace blink
95 95
96 #endif // PresentationAvailability_h 96 #endif // PresentationAvailability_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698