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

Unified Diff: third_party/WebKit/Source/core/frame/csp/CSPSource.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/csp/CSPSource.h
diff --git a/third_party/WebKit/Source/core/frame/csp/CSPSource.h b/third_party/WebKit/Source/core/frame/csp/CSPSource.h
index 60589ea4ac163adfdbad21b55acb6600ac3df728..4da4c9ccf4faf9e74b6c1558727e73ba1fe4073c 100644
--- a/third_party/WebKit/Source/core/frame/csp/CSPSource.h
+++ b/third_party/WebKit/Source/core/frame/csp/CSPSource.h
@@ -16,8 +16,7 @@ namespace blink {
class ContentSecurityPolicy;
class KURL;
-class CORE_EXPORT CSPSource : public NoBaseWillBeGarbageCollectedFinalized<CSPSource> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(CSPSource);
+class CORE_EXPORT CSPSource : public GarbageCollectedFinalized<CSPSource> {
public:
enum WildcardDisposition {
HasWildcard,
@@ -36,7 +35,7 @@ private:
bool portMatches(const KURL&) const;
bool isSchemeOnly() const;
- RawPtrWillBeMember<ContentSecurityPolicy> m_policy;
+ Member<ContentSecurityPolicy> m_policy;
String m_scheme;
String m_host;
int m_port;

Powered by Google App Engine
This is Rietveld 408576698