blob: e0a15a5918f4493cc12ab6c769cc5acd87336109 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/prerender/prerender_config.h"
namespace prerender {
Config::Config() : max_bytes(100 * 1024 * 1024),
max_elements(1),
rate_limit_enabled(true),
max_age(base::TimeDelta::FromSeconds(30)) {
}
} // namespace prerender
|