| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "build/build_config.h" | 6 #include "build/build_config.h" |
| 7 #include "chrome/browser/browser_process_platform_part_base.h" | 7 #include "chrome/browser/browser_process_platform_part_base.h" |
| 8 #include "chrome/browser/lifetime/application_lifetime.h" | 8 #include "chrome/browser/lifetime/application_lifetime.h" |
| 9 #include "chrome/browser/policy/chrome_browser_policy_connector.h" | 9 #include "chrome/browser/policy/chrome_browser_policy_connector.h" |
| 10 #include "components/policy/core/browser/browser_policy_connector.h" | 10 #include "components/policy/core/browser/browser_policy_connector.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 } | 34 } |
| 35 | 35 |
| 36 void BrowserProcessPlatformPartBase::PreMainMessageLoopRun() { | 36 void BrowserProcessPlatformPartBase::PreMainMessageLoopRun() { |
| 37 } | 37 } |
| 38 | 38 |
| 39 std::unique_ptr<policy::BrowserPolicyConnector> | 39 std::unique_ptr<policy::BrowserPolicyConnector> |
| 40 BrowserProcessPlatformPartBase::CreateBrowserPolicyConnector() { | 40 BrowserProcessPlatformPartBase::CreateBrowserPolicyConnector() { |
| 41 return std::unique_ptr<policy::BrowserPolicyConnector>( | 41 return std::unique_ptr<policy::BrowserPolicyConnector>( |
| 42 new policy::ChromeBrowserPolicyConnector()); | 42 new policy::ChromeBrowserPolicyConnector()); |
| 43 } | 43 } |
| 44 |
| 45 void BrowserProcessPlatformPartBase::RegisterInProcessServices( |
| 46 content::ContentBrowserClient::StaticServiceMap* services) {} |
| OLD | NEW |