Commit 3cf9221e authored by aiolos@chromium.org's avatar aiolos@chromium.org

Fix for uninitialized access.

BUG=394390

Review URL: https://codereview.chromium.org/391393002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283760 0039d316-1c4b-4281-b951-d872f2087c98
parent 7813fa6a
......@@ -634,7 +634,9 @@ class ResourceScheduler::Client {
ResourceScheduler::ClientThrottleState throttle_state_;
};
ResourceScheduler::ResourceScheduler() : active_clients_loading_(0) {
ResourceScheduler::ResourceScheduler(): should_coalesce_(false),
should_throttle_(false),
active_clients_loading_(0) {
}
ResourceScheduler::~ResourceScheduler() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment