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

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/SQLStatementBackend.cpp

Issue 2037233002: Revert of Enable per thread heap for database thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 SQLStatementBackend::SQLStatementBackend(SQLStatement* frontend, 80 SQLStatementBackend::SQLStatementBackend(SQLStatement* frontend,
81 const String& statement, const Vector<SQLValue>& arguments, int permissions) 81 const String& statement, const Vector<SQLValue>& arguments, int permissions)
82 : m_frontend(frontend) 82 : m_frontend(frontend)
83 , m_statement(statement.isolatedCopy()) 83 , m_statement(statement.isolatedCopy())
84 , m_arguments(arguments) 84 , m_arguments(arguments)
85 , m_hasCallback(m_frontend->hasCallback()) 85 , m_hasCallback(m_frontend->hasCallback())
86 , m_hasErrorCallback(m_frontend->hasErrorCallback()) 86 , m_hasErrorCallback(m_frontend->hasErrorCallback())
87 , m_resultSet(SQLResultSet::create()) 87 , m_resultSet(SQLResultSet::create())
88 , m_permissions(permissions) 88 , m_permissions(permissions)
89 { 89 {
90 DCHECK(isMainThread());
91
92 m_frontend->setBackend(this); 90 m_frontend->setBackend(this);
93 } 91 }
94 92
95 DEFINE_TRACE(SQLStatementBackend) 93 DEFINE_TRACE(SQLStatementBackend)
96 { 94 {
97 visitor->trace(m_frontend); 95 visitor->trace(m_frontend);
98 visitor->trace(m_resultSet); 96 visitor->trace(m_resultSet);
99 } 97 }
100 98
101 SQLStatement* SQLStatementBackend::frontend() 99 SQLStatement* SQLStatementBackend::frontend()
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 if (lastExecutionFailedDueToQuota()) 231 if (lastExecutionFailedDueToQuota())
234 m_error = nullptr; 232 m_error = nullptr;
235 } 233 }
236 234
237 bool SQLStatementBackend::lastExecutionFailedDueToQuota() const 235 bool SQLStatementBackend::lastExecutionFailedDueToQuota() const
238 { 236 {
239 return m_error && m_error->code() == SQLError::QUOTA_ERR; 237 return m_error && m_error->code() == SQLError::QUOTA_ERR;
240 } 238 }
241 239
242 } // namespace blink 240 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698