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

Side by Side Diff: sky/engine/core/css/CSSImageGeneratorValue.h

Issue 681113004: Remove Heap.h (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 protected: 72 protected:
73 explicit CSSImageGeneratorValue(ClassType); 73 explicit CSSImageGeneratorValue(ClassType);
74 74
75 Image* getImage(RenderObject*, const IntSize&); 75 Image* getImage(RenderObject*, const IntSize&);
76 void putImage(const IntSize&, PassRefPtr<Image>); 76 void putImage(const IntSize&, PassRefPtr<Image>);
77 const RenderObjectSizeCountMap& clients() const { return m_clients; } 77 const RenderObjectSizeCountMap& clients() const { return m_clients; }
78 78
79 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use. 79 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use.
80 RenderObjectSizeCountMap m_clients; // A map from RenderObjects (with entry count) to image sizes. 80 RenderObjectSizeCountMap m_clients; // A map from RenderObjects (with entry count) to image sizes.
81 HashMap<IntSize, RefPtr<Image> > m_images; // A cache of Image objects by im age size. 81 HashMap<IntSize, RefPtr<Image> > m_images; // A cache of Image objects by im age size.
82
83 #if ENABLE(OILPAN)
84 // FIXME: Oilpan: when/if we can make the renderer point directly to the CSS ImageGenerator value using
85 // a member we don't need to have this hack where we keep a persistent to th e instance as long as
86 // there are clients in the RenderObjectSizeCountMap.
87 GC_PLUGIN_IGNORE("366546")
88 OwnPtr<Persistent<CSSImageGeneratorValue> > m_keepAlive;
89 #endif
90 }; 82 };
91 83
92 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageGeneratorValue, isImageGeneratorValue()); 84 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageGeneratorValue, isImageGeneratorValue());
93 85
94 } // namespace blink 86 } // namespace blink
95 87
96 #endif // CSSImageGeneratorValue_h 88 #endif // CSSImageGeneratorValue_h
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/css/MediaQueryList.h » ('j') | sky/engine/core/css/MediaQueryMatcher.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698