summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/rendering/compositing/CompositedLayerMappingPtr.h
blob: 27cb68581d5ff74c2c7c4fda540350bbb71a19c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CompositedLayerMappingPtr_h
#define CompositedLayerMappingPtr_h

#include "wtf/Assertions.h"

namespace WebCore {

class CompositedLayerMapping;

class CompositedLayerMappingPtr {
public:
    CompositedLayerMappingPtr(CompositedLayerMapping* mapping)
        : m_mapping(mapping)
    {
    }

    CompositedLayerMapping& operator*() const
    {
        ASSERT(m_mapping);
        return *m_mapping;
    }

    CompositedLayerMapping* operator->() const
    {
        ASSERT(m_mapping);
        return m_mapping;
    }

private:
    CompositedLayerMapping* m_mapping;
};

} // namespace WebCore

#endif // CompositedLayerMappingPtr_h