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

Side by Side Diff: Source/modules/indexeddb/IDBCursorWithValue.h

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. 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
« no previous file with comments | « Source/modules/indexeddb/IDBCursor.h ('k') | Source/modules/indexeddb/IDBDatabase.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google 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 21 matching lines...) Expand all
32 #include "public/platform/WebIDBTypes.h" 32 #include "public/platform/WebIDBTypes.h"
33 #include "wtf/PassOwnPtr.h" 33 #include "wtf/PassOwnPtr.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 class IDBAny; 37 class IDBAny;
38 class IDBRequest; 38 class IDBRequest;
39 class IDBTransaction; 39 class IDBTransaction;
40 40
41 class IDBCursorWithValue FINAL : public IDBCursor { 41 class IDBCursorWithValue FINAL : public IDBCursor {
42 DEFINE_WRAPPERTYPEINFO();
42 public: 43 public:
43 static IDBCursorWithValue* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDire ction, IDBRequest*, IDBAny* source, IDBTransaction*); 44 static IDBCursorWithValue* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDire ction, IDBRequest*, IDBAny* source, IDBTransaction*);
44 virtual ~IDBCursorWithValue(); 45 virtual ~IDBCursorWithValue();
45 46
46 // The value attribute defined in the IDL is simply implemented in IDBCursor (but not exposed via 47 // The value attribute defined in the IDL is simply implemented in IDBCursor (but not exposed via
47 // its IDL). This is to make the implementation more simple while matching w hat the spec says. 48 // its IDL). This is to make the implementation more simple while matching w hat the spec says.
48 49
49 virtual bool isKeyCursor() const OVERRIDE { return false; } 50 virtual bool isKeyCursor() const OVERRIDE { return false; }
50 virtual bool isCursorWithValue() const OVERRIDE { return true; } 51 virtual bool isCursorWithValue() const OVERRIDE { return true; }
51 52
52 private: 53 private:
53 IDBCursorWithValue(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBReque st*, IDBAny* source, IDBTransaction*); 54 IDBCursorWithValue(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBReque st*, IDBAny* source, IDBTransaction*);
54 }; 55 };
55 56
56 DEFINE_TYPE_CASTS(IDBCursorWithValue, IDBCursor, cursor, cursor->isCursorWithVal ue(), cursor.isCursorWithValue()); 57 DEFINE_TYPE_CASTS(IDBCursorWithValue, IDBCursor, cursor, cursor->isCursorWithVal ue(), cursor.isCursorWithValue());
57 58
58 } // namespace blink 59 } // namespace blink
59 60
60 #endif // IDBCursorWithValue_h 61 #endif // IDBCursorWithValue_h
OLDNEW
« no previous file with comments | « Source/modules/indexeddb/IDBCursor.h ('k') | Source/modules/indexeddb/IDBDatabase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698