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

Side by Side Diff: Source/core/css/MediaValuesCached.cpp

Issue 1260403002: Oilpan: Remove raw pointer to LocalFrame from MediaValuesDynamic (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/css/MediaValuesCached.h ('k') | Source/core/css/MediaValuesDynamic.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "config.h" 5 #include "config.h"
6 #include "core/css/MediaValuesCached.h" 6 #include "core/css/MediaValuesCached.h"
7 7
8 #include "core/css/CSSPrimitiveValue.h" 8 #include "core/css/CSSPrimitiveValue.h"
9 #include "core/dom/Document.h" 9 #include "core/dom/Document.h"
10 #include "core/frame/LocalFrame.h" 10 #include "core/frame/LocalFrame.h"
11 #include "core/layout/LayoutObject.h" 11 #include "core/layout/LayoutObject.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 PassRefPtr<MediaValues> MediaValuesCached::create() 15 PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create()
16 { 16 {
17 return adoptRef(new MediaValuesCached()); 17 return adoptRefWillBeNoop(new MediaValuesCached());
18 } 18 }
19 19
20 PassRefPtr<MediaValues> MediaValuesCached::create(MediaValuesCachedData& data) 20 PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create(MediaValuesCachedD ata& data)
21 { 21 {
22 return adoptRef(new MediaValuesCached(data)); 22 return adoptRefWillBeNoop(new MediaValuesCached(data));
23 } 23 }
24 24
25 PassRefPtr<MediaValues> MediaValuesCached::create(Document& document) 25 PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create(Document& document )
26 { 26 {
27 return MediaValuesCached::create(frameFrom(document)); 27 return MediaValuesCached::create(frameFrom(document));
28 } 28 }
29 29
30 PassRefPtr<MediaValues> MediaValuesCached::create(LocalFrame* frame) 30 PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::create(LocalFrame* frame)
31 { 31 {
32 // FIXME - Added an assert here so we can better understand when a frame is present without its view(). 32 // FIXME - Added an assert here so we can better understand when a frame is present without its view().
33 ASSERT(!frame || frame->view()); 33 ASSERT(!frame || frame->view());
34 if (!frame || !frame->view()) 34 if (!frame || !frame->view())
35 return adoptRef(new MediaValuesCached()); 35 return adoptRefWillBeNoop(new MediaValuesCached());
36 ASSERT(frame->document() && frame->document()->layoutView()); 36 ASSERT(frame->document() && frame->document()->layoutView());
37 return adoptRef(new MediaValuesCached(frame)); 37 return adoptRefWillBeNoop(new MediaValuesCached(frame));
38 } 38 }
39 39
40 MediaValuesCached::MediaValuesCached() 40 MediaValuesCached::MediaValuesCached()
41 { 41 {
42 } 42 }
43 43
44 MediaValuesCached::MediaValuesCached(LocalFrame* frame) 44 MediaValuesCached::MediaValuesCached(LocalFrame* frame)
45 { 45 {
46 ASSERT(isMainThread()); 46 ASSERT(isMainThread());
47 ASSERT(frame); 47 ASSERT(frame);
(...skipping 17 matching lines...) Expand all
65 const String mediaType = calculateMediaType(frame); 65 const String mediaType = calculateMediaType(frame);
66 if (!mediaType.isEmpty()) 66 if (!mediaType.isEmpty())
67 m_data.mediaType = mediaType.isolatedCopy(); 67 m_data.mediaType = mediaType.isolatedCopy();
68 } 68 }
69 69
70 MediaValuesCached::MediaValuesCached(const MediaValuesCachedData& data) 70 MediaValuesCached::MediaValuesCached(const MediaValuesCachedData& data)
71 : m_data(data) 71 : m_data(data)
72 { 72 {
73 } 73 }
74 74
75 PassRefPtr<MediaValues> MediaValuesCached::copy() const 75 PassRefPtrWillBeRawPtr<MediaValues> MediaValuesCached::copy() const
76 { 76 {
77 return adoptRef(new MediaValuesCached(m_data)); 77 return adoptRefWillBeNoop(new MediaValuesCached(m_data));
78 } 78 }
79 79
80 bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType type, int& result) const 80 bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType type, int& result) const
81 { 81 {
82 return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_dat a.viewportWidth, m_data.viewportHeight, result); 82 return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_dat a.viewportWidth, m_data.viewportHeight, result);
83 } 83 }
84 84
85 bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType type, double& result) const 85 bool MediaValuesCached::computeLength(double value, CSSPrimitiveValue::UnitType type, double& result) const
86 { 86 {
87 return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_dat a.viewportWidth, m_data.viewportHeight, result); 87 return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_dat a.viewportWidth, m_data.viewportHeight, result);
88 } 88 }
89 89
90 bool MediaValuesCached::isSafeToSendToAnotherThread() const 90 bool MediaValuesCached::isSafeToSendToAnotherThread() const
91 { 91 {
92 #if ENABLE(OILPAN)
93 // Oilpan objects are safe to send to another thread as long as the thread
94 // does not outlive the thread used for creation. MediaValues are
95 // allocated on the main thread and may be passed to the parser thread,
96 // so this should be safe.
97 return true;
98 #else
92 return hasOneRef(); 99 return hasOneRef();
100 #endif
93 } 101 }
94 102
95 int MediaValuesCached::viewportWidth() const 103 int MediaValuesCached::viewportWidth() const
96 { 104 {
97 return m_data.viewportWidth; 105 return m_data.viewportWidth;
98 } 106 }
99 107
100 int MediaValuesCached::viewportHeight() const 108 int MediaValuesCached::viewportHeight() const
101 { 109 {
102 return m_data.viewportHeight; 110 return m_data.viewportHeight;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 { 189 {
182 m_data.viewportWidth = width; 190 m_data.viewportWidth = width;
183 } 191 }
184 192
185 void MediaValuesCached::setViewportHeight(int height) 193 void MediaValuesCached::setViewportHeight(int height)
186 { 194 {
187 m_data.viewportHeight = height; 195 m_data.viewportHeight = height;
188 } 196 }
189 197
190 } // namespace 198 } // namespace
OLDNEW
« no previous file with comments | « Source/core/css/MediaValuesCached.h ('k') | Source/core/css/MediaValuesDynamic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698