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

Side by Side Diff: Source/core/html/HTMLTableElement.h

Issue 18398002: Remove IDBNotFoundError ExceptionCode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
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 17 matching lines...) Expand all
28 28
29 #include "core/html/HTMLElement.h" 29 #include "core/html/HTMLElement.h"
30 30
31 namespace WebCore { 31 namespace WebCore {
32 32
33 class HTMLCollection; 33 class HTMLCollection;
34 class HTMLTableCaptionElement; 34 class HTMLTableCaptionElement;
35 class HTMLTableRowsCollection; 35 class HTMLTableRowsCollection;
36 class HTMLTableSectionElement; 36 class HTMLTableSectionElement;
37 37
38 typedef int ExceptionCode;
Mike West 2013/07/10 09:40:30 This doesn't seem related to this CL. What changed
arv (Not doing code reviews) 2013/07/10 15:37:24 Not necessary, just a cleanup. I'll remove for now
39
38 class HTMLTableElement FINAL : public HTMLElement { 40 class HTMLTableElement FINAL : public HTMLElement {
39 public: 41 public:
40 static PassRefPtr<HTMLTableElement> create(Document*); 42 static PassRefPtr<HTMLTableElement> create(Document*);
41 static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*); 43 static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*);
42 44
43 HTMLTableCaptionElement* caption() const; 45 HTMLTableCaptionElement* caption() const;
44 void setCaption(PassRefPtr<HTMLTableCaptionElement>, ExceptionCode&); 46 void setCaption(PassRefPtr<HTMLTableCaptionElement>, ExceptionCode&);
45 47
46 HTMLTableSectionElement* tHead() const; 48 HTMLTableSectionElement* tHead() const;
47 void setTHead(PassRefPtr<HTMLTableSectionElement>, ExceptionCode&); 49 void setTHead(PassRefPtr<HTMLTableSectionElement>, ExceptionCode&);
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 TableRules m_rulesAttr; // Implies a thin border width, a collapsing bor der model, and all borders on the table becoming set to hidden (if frame/border 98 TableRules m_rulesAttr; // Implies a thin border width, a collapsing bor der model, and all borders on the table becoming set to hidden (if frame/border
97 // are present, to none otherwise). 99 // are present, to none otherwise).
98 100
99 unsigned short m_padding; 101 unsigned short m_padding;
100 RefPtr<StylePropertySet> m_sharedCellStyle; 102 RefPtr<StylePropertySet> m_sharedCellStyle;
101 }; 103 };
102 104
103 } //namespace 105 } //namespace
104 106
105 #endif 107 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698