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

Unified Diff: third_party/WebKit/Source/core/frame/csp/CSPDirective.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/CSPDirective.h
diff --git a/third_party/WebKit/Source/core/frame/csp/CSPDirective.h b/third_party/WebKit/Source/core/frame/csp/CSPDirective.h
index e8a1cfb8974d3bb9d84afdde1afc765d642fb156..3ec8d343e0590ec3f33381db42c629cd3a99a876 100644
--- a/third_party/WebKit/Source/core/frame/csp/CSPDirective.h
+++ b/third_party/WebKit/Source/core/frame/csp/CSPDirective.h
@@ -12,8 +12,7 @@ namespace blink {
class ContentSecurityPolicy;
-class CSPDirective : public NoBaseWillBeGarbageCollectedFinalized<CSPDirective> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(CSPDirective);
+class CSPDirective : public GarbageCollectedFinalized<CSPDirective> {
WTF_MAKE_NONCOPYABLE(CSPDirective);
public:
CSPDirective(const String& name, const String& value, ContentSecurityPolicy* policy)
@@ -33,7 +32,7 @@ protected:
private:
String m_name;
String m_text;
- RawPtrWillBeMember<ContentSecurityPolicy> m_policy;
+ Member<ContentSecurityPolicy> m_policy;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/frame/VisualViewport.h ('k') | third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698