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

Side by Side Diff: third_party/WebKit/Source/core/page/ScopedPageSuspender.cpp

Issue 2843503002: scheduler: Move WebFrameScheduler and WebScheduler into Blink (Closed)
Patch Set: Build fix Created 3 years, 7 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) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #include "core/page/ScopedPageSuspender.h" 21 #include "core/page/ScopedPageSuspender.h"
22 22
23 #include "core/dom/Document.h" 23 #include "core/dom/Document.h"
24 #include "core/loader/FrameLoader.h" 24 #include "core/loader/FrameLoader.h"
25 #include "core/page/Page.h" 25 #include "core/page/Page.h"
26 #include "platform/heap/Handle.h" 26 #include "platform/heap/Handle.h"
27 #include "platform/scheduler/child/web_scheduler.h"
27 #include "platform/wtf/StdLibExtras.h" 28 #include "platform/wtf/StdLibExtras.h"
28 #include "platform/wtf/Vector.h" 29 #include "platform/wtf/Vector.h"
29 #include "public/platform/Platform.h" 30 #include "public/platform/Platform.h"
30 #include "public/platform/WebScheduler.h"
31 31
32 namespace blink { 32 namespace blink {
33 33
34 namespace { 34 namespace {
35 35
36 unsigned g_suspension_count = 0; 36 unsigned g_suspension_count = 0;
37 37
38 } // namespace 38 } // namespace
39 39
40 ScopedPageSuspender::ScopedPageSuspender() { 40 ScopedPageSuspender::ScopedPageSuspender() {
(...skipping 20 matching lines...) Expand all
61 61
62 for (const auto& page : pages) 62 for (const auto& page : pages)
63 page->SetSuspended(is_suspended); 63 page->SetSuspended(is_suspended);
64 } 64 }
65 65
66 bool ScopedPageSuspender::IsActive() { 66 bool ScopedPageSuspender::IsActive() {
67 return g_suspension_count > 0; 67 return g_suspension_count > 0;
68 } 68 }
69 69
70 } // namespace blink 70 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698