| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index 4f434b906a4bfe1d348283f808c7ef81dfb21374..e3343ab1b6256ee0ab6a5a24406ef9373442af1a 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -1207,11 +1207,18 @@ chrome_browser_net::Predictor* ProfileImpl::GetNetworkPredictor() {
|
| return predictor_;
|
| }
|
|
|
| -void ProfileImpl::ClearNetworkingHistorySince(base::Time time,
|
| - const base::Closure& completion) {
|
| +void ProfileImpl::ClearNetworkingHistorySince(
|
| + base::Time time,
|
| + const base::Closure& completion) {
|
| io_data_.ClearNetworkingHistorySince(time, completion);
|
| }
|
|
|
| +void ProfileImpl::ClearDomainReliabilityMonitor(
|
| + bool clear_contexts,
|
| + const base::Closure& completion) {
|
| + io_data_.ClearDomainReliabilityMonitor(clear_contexts, completion);
|
| +}
|
| +
|
| GURL ProfileImpl::GetHomePage() {
|
| // --homepage overrides any preferences.
|
| const CommandLine& command_line = *CommandLine::ForCurrentProcess();
|
|
|