Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/profiles/profile_io_data.h" | 5 #include "chrome/browser/profiles/profile_io_data.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1332 base::WrapUnique(new DevToolsNetworkTransactionFactory( | 1332 base::WrapUnique(new DevToolsNetworkTransactionFactory( |
| 1333 network_controller_handle_.GetController(), shared_session)), | 1333 network_controller_handle_.GetController(), shared_session)), |
| 1334 std::move(backend), true /* set_up_quic_server_info */)); | 1334 std::move(backend), true /* set_up_quic_server_info */)); |
| 1335 } | 1335 } |
| 1336 | 1336 |
| 1337 void ProfileIOData::SetCookieSettingsForTesting( | 1337 void ProfileIOData::SetCookieSettingsForTesting( |
| 1338 content_settings::CookieSettings* cookie_settings) { | 1338 content_settings::CookieSettings* cookie_settings) { |
| 1339 DCHECK(!cookie_settings_.get()); | 1339 DCHECK(!cookie_settings_.get()); |
| 1340 cookie_settings_ = cookie_settings; | 1340 cookie_settings_ = cookie_settings; |
| 1341 } | 1341 } |
| 1342 | |
| 1343 chrome_browser_net::Predictor* ProfileIOData::GetPredictor() { | |
|
mmenke
2016/05/23 18:50:22
Definition order should match declaration order.
Charlie Harrison
2016/05/23 21:13:32
Done.
| |
| 1344 return nullptr; | |
| 1345 } | |
| OLD | NEW |