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

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/SQLStatement.h

Issue 1857713004: DevTools: simplify the async instrumentation harness. (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) 2007, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2013 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 private: 57 private:
58 SQLStatement(Database*, SQLStatementCallback*, SQLStatementErrorCallback*); 58 SQLStatement(Database*, SQLStatementCallback*, SQLStatementErrorCallback*);
59 59
60 // The SQLStatementBackend owns the SQLStatement. Hence, the backend is 60 // The SQLStatementBackend owns the SQLStatement. Hence, the backend is
61 // guaranteed to be outlive the SQLStatement, and it is safe for us to refer 61 // guaranteed to be outlive the SQLStatement, and it is safe for us to refer
62 // to the backend using a raw pointer here. 62 // to the backend using a raw pointer here.
63 Member<SQLStatementBackend> m_backend; 63 Member<SQLStatementBackend> m_backend;
64 64
65 Member<SQLStatementCallback> m_statementCallback; 65 Member<SQLStatementCallback> m_statementCallback;
66 Member<SQLStatementErrorCallback> m_statementErrorCallback; 66 Member<SQLStatementErrorCallback> m_statementErrorCallback;
67 int m_asyncOperationId;
68 }; 67 };
69 68
70 } // namespace blink 69 } // namespace blink
71 70
72 #endif // SQLStatement_h 71 #endif // SQLStatement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698