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

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseContext.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) 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
105 // ActiveDOMObject expects this to be called to set internal flags. 103 // ActiveDOMObject expects this to be called to set internal flags.
106 suspendIfNeeded(); 104 suspendIfNeeded();
107 105
108 // For debug accounting only. We must do this before we register the 106 // For debug accounting only. We must do this before we register the
109 // instance. The assertions assume this. 107 // instance. The assertions assume this.
110 DatabaseManager::manager().didConstructDatabaseContext(); 108 DatabaseManager::manager().didConstructDatabaseContext();
111 } 109 }
112 110
113 DatabaseContext::~DatabaseContext() 111 DatabaseContext::~DatabaseContext()
114 { 112 {
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 { 197 {
200 return getExecutionContext()->getSecurityOrigin(); 198 return getExecutionContext()->getSecurityOrigin();
201 } 199 }
202 200
203 bool DatabaseContext::isContextThread() const 201 bool DatabaseContext::isContextThread() const
204 { 202 {
205 return getExecutionContext()->isContextThread(); 203 return getExecutionContext()->isContextThread();
206 } 204 }
207 205
208 } // namespace blink 206 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698