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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLButtonElement.cpp

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, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 26 matching lines...) Expand all
37 37
38 using namespace HTMLNames; 38 using namespace HTMLNames;
39 39
40 inline HTMLButtonElement::HTMLButtonElement(Document& document, HTMLFormElement* form) 40 inline HTMLButtonElement::HTMLButtonElement(Document& document, HTMLFormElement* form)
41 : HTMLFormControlElement(buttonTag, document, form) 41 : HTMLFormControlElement(buttonTag, document, form)
42 , m_type(SUBMIT) 42 , m_type(SUBMIT)
43 , m_isActivatedSubmit(false) 43 , m_isActivatedSubmit(false)
44 { 44 {
45 } 45 }
46 46
47 PassRefPtrWillBeRawPtr<HTMLButtonElement> HTMLButtonElement::create(Document& do cument, HTMLFormElement* form) 47 RawPtr<HTMLButtonElement> HTMLButtonElement::create(Document& document, HTMLForm Element* form)
48 { 48 {
49 return adoptRefWillBeNoop(new HTMLButtonElement(document, form)); 49 return new HTMLButtonElement(document, form);
50 } 50 }
51 51
52 void HTMLButtonElement::setType(const AtomicString& type) 52 void HTMLButtonElement::setType(const AtomicString& type)
53 { 53 {
54 setAttribute(typeAttr, type); 54 setAttribute(typeAttr, type);
55 } 55 }
56 56
57 LayoutObject* HTMLButtonElement::createLayoutObject(const ComputedStyle&) 57 LayoutObject* HTMLButtonElement::createLayoutObject(const ComputedStyle&)
58 { 58 {
59 return new LayoutButton(this); 59 return new LayoutButton(this);
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 } 222 }
223 223
224 Node::InsertionNotificationRequest HTMLButtonElement::insertedInto(ContainerNode * insertionPoint) 224 Node::InsertionNotificationRequest HTMLButtonElement::insertedInto(ContainerNode * insertionPoint)
225 { 225 {
226 InsertionNotificationRequest request = HTMLFormControlElement::insertedInto( insertionPoint); 226 InsertionNotificationRequest request = HTMLFormControlElement::insertedInto( insertionPoint);
227 logAddElementIfIsolatedWorldAndInDocument("button", typeAttr, formmethodAttr , formactionAttr); 227 logAddElementIfIsolatedWorldAndInDocument("button", typeAttr, formmethodAttr , formactionAttr);
228 return request; 228 return request;
229 } 229 }
230 230
231 } // namespace blink 231 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLButtonElement.h ('k') | third_party/WebKit/Source/core/html/HTMLCanvasElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698