Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / public / platform / WebFrameHostScheduler.h
blobd64b29bd941241e7c364b0cc18b4477790c37327
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef WebFrameHostScheduler_h
6 #define WebFrameHostScheduler_h
8 #include "WebCommon.h"
10 namespace blink {
12 class WebFrameScheduler;
14 class BLINK_PLATFORM_EXPORT WebFrameHostScheduler {
15 public:
16 virtual ~WebFrameHostScheduler() { }
18 // The scheduler may throttle tasks associated with background pages.
19 virtual void setPageInBackground(bool) { }
21 // Creaters a new WebFrameScheduler, the caller is responsible for deleting it.
22 virtual WebFrameScheduler* createFrameScheduler() { return nullptr; }
25 } // namespace blink
27 #endif // WebFrameHostScheduler