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

Side by Side Diff: Source/modules/webdatabase/SQLResultSetRowList.h

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 const Vector<String>& columnNames() const { return m_columns; } 46 const Vector<String>& columnNames() const { return m_columns; }
47 const Vector<SQLValue>& values() const { return m_result; } 47 const Vector<SQLValue>& values() const { return m_result; }
48 48
49 void addColumn(const String& name) { m_columns.append(name); } 49 void addColumn(const String& name) { m_columns.append(name); }
50 void addResult(const SQLValue& result) { m_result.append(result); } 50 void addResult(const SQLValue& result) { m_result.append(result); }
51 51
52 unsigned length() const; 52 unsigned length() const;
53 53
54 private: 54 private:
55 SQLResultSetRowList() 55 SQLResultSetRowList() { }
56 {
57 ScriptWrappable::init(this);
58 }
59 56
60 Vector<String> m_columns; 57 Vector<String> m_columns;
61 Vector<SQLValue> m_result; 58 Vector<SQLValue> m_result;
62 }; 59 };
63 60
64 } // namespace blink 61 } // namespace blink
65 62
66 #endif // SQLResultSetRowList_h 63 #endif // SQLResultSetRowList_h
OLDNEW
« no previous file with comments | « Source/modules/webdatabase/SQLResultSet.cpp ('k') | Source/modules/webdatabase/SQLTransaction.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698