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

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

Issue 1477023003: Refactor the Heap into ThreadHeap to prepare for per thread heaps Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 ASSERT(isMainThread());
103 // ActiveDOMObject expects this to be called to set internal flags. 104 // ActiveDOMObject expects this to be called to set internal flags.
104 suspendIfNeeded(); 105 suspendIfNeeded();
105 106
106 // For debug accounting only. We must do this before we register the 107 // For debug accounting only. We must do this before we register the
107 // instance. The assertions assume this. 108 // instance. The assertions assume this.
108 DatabaseManager::manager().didConstructDatabaseContext(); 109 DatabaseManager::manager().didConstructDatabaseContext();
109 } 110 }
110 111
111 DatabaseContext::~DatabaseContext() 112 DatabaseContext::~DatabaseContext()
112 { 113 {
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 { 198 {
198 return executionContext()->securityOrigin(); 199 return executionContext()->securityOrigin();
199 } 200 }
200 201
201 bool DatabaseContext::isContextThread() const 202 bool DatabaseContext::isContextThread() const
202 { 203 {
203 return executionContext()->isContextThread(); 204 return executionContext()->isContextThread();
204 } 205 }
205 206
206 } // namespace blink 207 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698