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

Unified Diff: third_party/WebKit/Source/core/loader/FormSubmission.h

Issue 1853743005: Oilpan: Remove WillBe types (part 13) (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/loader/FormSubmission.h
diff --git a/third_party/WebKit/Source/core/loader/FormSubmission.h b/third_party/WebKit/Source/core/loader/FormSubmission.h
index 5ed889d9bc4b042bfc3608924ae480c5ed460149..71d9f6d7ae3afebfbbdd242c04a32515282dab57 100644
--- a/third_party/WebKit/Source/core/loader/FormSubmission.h
+++ b/third_party/WebKit/Source/core/loader/FormSubmission.h
@@ -43,7 +43,7 @@ class Event;
struct FrameLoadRequest;
class HTMLFormElement;
-class FormSubmission : public RefCountedWillBeGarbageCollectedFinalized<FormSubmission> {
+class FormSubmission : public GarbageCollectedFinalized<FormSubmission> {
public:
enum SubmitMethod { GetMethod, PostMethod, DialogMethod };
@@ -89,7 +89,7 @@ public:
String m_acceptCharset;
};
- static PassRefPtrWillBeRawPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, PassRefPtrWillBeRawPtr<Event>);
+ static RawPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, RawPtr<Event>);
DECLARE_TRACE();
void populateFrameLoadRequest(FrameLoadRequest&);
@@ -107,7 +107,7 @@ public:
const String& result() const { return m_result; }
private:
- FormSubmission(SubmitMethod, const KURL& action, const AtomicString& target, const AtomicString& contentType, HTMLFormElement*, PassRefPtr<EncodedFormData>, const String& boundary, PassRefPtrWillBeRawPtr<Event>);
+ FormSubmission(SubmitMethod, const KURL& action, const AtomicString& target, const AtomicString& contentType, HTMLFormElement*, PassRefPtr<EncodedFormData>, const String& boundary, RawPtr<Event>);
// FormSubmission for DialogMethod
FormSubmission(const String& result);
@@ -116,10 +116,10 @@ private:
KURL m_action;
AtomicString m_target;
AtomicString m_contentType;
- RefPtrWillBeMember<HTMLFormElement> m_form;
+ Member<HTMLFormElement> m_form;
RefPtr<EncodedFormData> m_formData;
String m_boundary;
- RefPtrWillBeMember<Event> m_event;
+ Member<Event> m_event;
String m_result;
};

Powered by Google App Engine
This is Rietveld 408576698