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

Side by Side Diff: third_party/WebKit/Source/modules/indexeddb/IDBRequest.h

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 : public RefCountedGarbageCollectedEventTargetWithInlineData<IDBRequest> 58 : public RefCountedGarbageCollectedEventTargetWithInlineData<IDBRequest>
59 , public ActiveDOMObject { 59 , public ActiveDOMObject {
60 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBRequest); 60 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(IDBRequest);
61 DEFINE_WRAPPERTYPEINFO(); 61 DEFINE_WRAPPERTYPEINFO();
62 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(IDBRequest); 62 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(IDBRequest);
63 public: 63 public:
64 static IDBRequest* create(ScriptState*, IDBAny* source, IDBTransaction*); 64 static IDBRequest* create(ScriptState*, IDBAny* source, IDBTransaction*);
65 ~IDBRequest() override; 65 ~IDBRequest() override;
66 DECLARE_VIRTUAL_TRACE(); 66 DECLARE_VIRTUAL_TRACE();
67 67
68 ScriptState* scriptState() { return m_scriptState.get(); } 68 ScriptState* getScriptState() { return m_scriptState.get(); }
69 ScriptValue result(ExceptionState&); 69 ScriptValue result(ExceptionState&);
70 DOMException* error(ExceptionState&) const; 70 DOMException* error(ExceptionState&) const;
71 ScriptValue source() const; 71 ScriptValue source() const;
72 IDBTransaction* transaction() const { return m_transaction.get(); } 72 IDBTransaction* transaction() const { return m_transaction.get(); }
73 73
74 bool isResultDirty() const { return m_resultDirty; } 74 bool isResultDirty() const { return m_resultDirty; }
75 IDBAny* resultAsAny() const { return m_result; } 75 IDBAny* resultAsAny() const { return m_result; }
76 76
77 // Requests made during index population are implementation details and so 77 // Requests made during index population are implementation details and so
78 // events should not be visible to script. 78 // events should not be visible to script.
(...skipping 29 matching lines...) Expand all
108 virtual void onBlocked(int64_t oldVersion) { ASSERT_NOT_REACHED(); } 108 virtual void onBlocked(int64_t oldVersion) { ASSERT_NOT_REACHED(); }
109 virtual void onUpgradeNeeded(int64_t oldVersion, PassOwnPtr<WebIDBDatabase>, const IDBDatabaseMetadata&, WebIDBDataLoss, String dataLossMessage) { ASSERT_NO T_REACHED(); } 109 virtual void onUpgradeNeeded(int64_t oldVersion, PassOwnPtr<WebIDBDatabase>, const IDBDatabaseMetadata&, WebIDBDataLoss, String dataLossMessage) { ASSERT_NO T_REACHED(); }
110 virtual void onSuccess(PassOwnPtr<WebIDBDatabase>, const IDBDatabaseMetadata &) { ASSERT_NOT_REACHED(); } 110 virtual void onSuccess(PassOwnPtr<WebIDBDatabase>, const IDBDatabaseMetadata &) { ASSERT_NOT_REACHED(); }
111 111
112 // ActiveDOMObject 112 // ActiveDOMObject
113 bool hasPendingActivity() const final; 113 bool hasPendingActivity() const final;
114 void stop() final; 114 void stop() final;
115 115
116 // EventTarget 116 // EventTarget
117 const AtomicString& interfaceName() const override; 117 const AtomicString& interfaceName() const override;
118 ExecutionContext* executionContext() const final; 118 ExecutionContext* getExecutionContext() const final;
119 void uncaughtExceptionInEventHandler() final; 119 void uncaughtExceptionInEventHandler() final;
120 120
121 // Called by a version change transaction that has finished to set this 121 // Called by a version change transaction that has finished to set this
122 // request back from DONE (following "upgradeneeded") back to PENDING (for 122 // request back from DONE (following "upgradeneeded") back to PENDING (for
123 // the upcoming "success" or "error"). 123 // the upcoming "success" or "error").
124 void transactionDidFinishAndDispatch(); 124 void transactionDidFinishAndDispatch();
125 125
126 IDBCursor* getResultCursor() const; 126 IDBCursor* getResultCursor() const;
127 127
128 protected: 128 protected:
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 RefPtr<IDBValue> m_cursorValue; 165 RefPtr<IDBValue> m_cursorValue;
166 166
167 bool m_didFireUpgradeNeededEvent = false; 167 bool m_didFireUpgradeNeededEvent = false;
168 bool m_preventPropagation = false; 168 bool m_preventPropagation = false;
169 bool m_resultDirty = true; 169 bool m_resultDirty = true;
170 }; 170 };
171 171
172 } // namespace blink 172 } // namespace blink
173 173
174 #endif // IDBRequest_h 174 #endif // IDBRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698