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

Side by Side Diff: Source/core/rendering/CompositedLayerMappingPtr.h

Issue 59063003: Don't coerce pointers to compositor layer mappings to booleans. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaaaase Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 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 CompositedLayerMappingPtr_h
6 #define CompositedLayerMappingPtr_h
7
8 namespace WebCore {
9
10 class CompositedLayerMapping;
11
12 class CompositedLayerMappingPtr {
13 public:
14 CompositedLayerMappingPtr(CompositedLayerMapping* mapping)
15 : m_mapping(mapping)
16 {
17 }
18
19 CompositedLayerMapping& operator*() const { return *m_mapping; }
shawnsingh 2013/11/05 10:20:27 should we ASSERT(m_mapping) here? I don't feel st
Ian Vollick 2013/11/08 03:35:12 Sure, done. I've also added the assert to 'operato
20 CompositedLayerMapping* operator->() const { return m_mapping; }
21
22 private:
23 CompositedLayerMapping* m_mapping;
24 };
25
26 } // namespace WebCore
27
28 #endif // CompositedLayerMappingPtr_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698