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

Side by Side Diff: third_party/WebKit/Source/core/layout/api/LayoutMediaItem.h

Issue 2510353004: Deprecating AutoplayExperimentHelper (Closed)
Patch Set: rebased Created 4 years 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef LayoutMediaItem_h
6 #define LayoutMediaItem_h
7
8 #include "core/layout/LayoutMedia.h"
9 #include "core/layout/api/LayoutImageItem.h"
10
11 namespace blink {
12
13 class LayoutMediaItem : public LayoutImageItem {
14 public:
15 explicit LayoutMediaItem(LayoutMedia* layoutMedia)
16 : LayoutImageItem(layoutMedia) {}
17
18 explicit LayoutMediaItem(const LayoutItem& item) : LayoutImageItem(item) {
19 SECURITY_DCHECK(!item || item.isMedia());
20 }
21
22 explicit LayoutMediaItem(std::nullptr_t) : LayoutImageItem(nullptr) {}
23
24 LayoutMediaItem() {}
25
26 void setRequestPositionUpdates(bool want) {
27 return toMedia()->setRequestPositionUpdates(want);
28 }
29
30 private:
31 LayoutMedia* toMedia() { return toLayoutMedia(layoutObject()); }
32
33 const LayoutMedia* toMedia() const { return toLayoutMedia(layoutObject()); }
34 };
35
36 } // namespace blink
37
38 #endif // LayoutMediaItem_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutView.cpp ('k') | third_party/WebKit/Source/core/layout/api/LayoutViewItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698