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

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

Issue 1909813002: 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) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2011 Google, Inc. All Rights Reserved. 3 * Copyright (C) 2011 Google, Inc. All Rights Reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 DatabaseContext* self = new DatabaseContext(context); 93 DatabaseContext* self = new DatabaseContext(context);
94 DatabaseManager::manager().registerDatabaseContext(self); 94 DatabaseManager::manager().registerDatabaseContext(self);
95 return self; 95 return self;
96 } 96 }
97 97
98 DatabaseContext::DatabaseContext(ExecutionContext* context) 98 DatabaseContext::DatabaseContext(ExecutionContext* context)
99 : ActiveDOMObject(context) 99 : ActiveDOMObject(context)
100 , m_hasOpenDatabases(false) 100 , m_hasOpenDatabases(false)
101 , m_hasRequestedTermination(false) 101 , m_hasRequestedTermination(false)
102 { 102 {
103 DCHECK(isMainThread());
104
103 // ActiveDOMObject expects this to be called to set internal flags. 105 // ActiveDOMObject expects this to be called to set internal flags.
104 suspendIfNeeded(); 106 suspendIfNeeded();
105 107
106 // For debug accounting only. We must do this before we register the 108 // For debug accounting only. We must do this before we register the
107 // instance. The assertions assume this. 109 // instance. The assertions assume this.
108 DatabaseManager::manager().didConstructDatabaseContext(); 110 DatabaseManager::manager().didConstructDatabaseContext();
109 } 111 }
110 112
111 DatabaseContext::~DatabaseContext() 113 DatabaseContext::~DatabaseContext()
112 { 114 {
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 { 199 {
198 return getExecutionContext()->getSecurityOrigin(); 200 return getExecutionContext()->getSecurityOrigin();
199 } 201 }
200 202
201 bool DatabaseContext::isContextThread() const 203 bool DatabaseContext::isContextThread() const
202 { 204 {
203 return getExecutionContext()->isContextThread(); 205 return getExecutionContext()->isContextThread();
204 } 206 }
205 207
206 } // namespace blink 208 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698