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

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/SQLTransaction.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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 Member<Database> m_database; 106 Member<Database> m_database;
107 Member<SQLTransactionBackend> m_backend; 107 Member<SQLTransactionBackend> m_backend;
108 Member<SQLTransactionCallback> m_callback; 108 Member<SQLTransactionCallback> m_callback;
109 Member<VoidCallback> m_successCallback; 109 Member<VoidCallback> m_successCallback;
110 Member<SQLTransactionErrorCallback> m_errorCallback; 110 Member<SQLTransactionErrorCallback> m_errorCallback;
111 111
112 bool m_executeSqlAllowed; 112 bool m_executeSqlAllowed;
113 OwnPtr<SQLErrorData> m_transactionError; 113 OwnPtr<SQLErrorData> m_transactionError;
114 114
115 bool m_readOnly; 115 bool m_readOnly;
116 int m_asyncOperationId;
117 }; 116 };
118 117
119 } // namespace blink 118 } // namespace blink
120 119
121 #endif // SQLTransaction_h 120 #endif // SQLTransaction_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698