| 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/test/base/testing_browser_process.h" | 5 #include "chrome/test/base/testing_browser_process.h" |
| 6 | 6 |
| 7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "base/time/default_clock.h" | 8 #include "base/time/default_clock.h" |
| 9 #include "base/time/default_tick_clock.h" | 9 #include "base/time/default_tick_clock.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 BrowserProcessPlatformPart* TestingBrowserProcess::platform_part() { | 207 BrowserProcessPlatformPart* TestingBrowserProcess::platform_part() { |
| 208 return platform_part_.get(); | 208 return platform_part_.get(); |
| 209 } | 209 } |
| 210 | 210 |
| 211 extensions::EventRouterForwarder* | 211 extensions::EventRouterForwarder* |
| 212 TestingBrowserProcess::extension_event_router_forwarder() { | 212 TestingBrowserProcess::extension_event_router_forwarder() { |
| 213 return nullptr; | 213 return nullptr; |
| 214 } | 214 } |
| 215 | 215 |
| 216 NotificationUIManager* TestingBrowserProcess::notification_ui_manager() { | 216 NotificationUIManager* TestingBrowserProcess::notification_ui_manager() { |
| 217 #if defined(ENABLE_NOTIFICATIONS) | 217 #if defined(ENABLE_NOTIFICATIONS) && !defined(OS_ANDROID) |
| 218 if (!notification_ui_manager_.get()) | 218 if (!notification_ui_manager_.get()) |
| 219 notification_ui_manager_.reset( | 219 notification_ui_manager_.reset( |
| 220 NotificationUIManager::Create(local_state())); | 220 NotificationUIManager::Create(local_state())); |
| 221 return notification_ui_manager_.get(); | 221 return notification_ui_manager_.get(); |
| 222 #else | 222 #else |
| 223 NOTIMPLEMENTED(); | 223 NOTIMPLEMENTED(); |
| 224 return nullptr; | 224 return nullptr; |
| 225 #endif | 225 #endif |
| 226 } | 226 } |
| 227 | 227 |
| 228 NotificationPlatformBridge* |
| 229 TestingBrowserProcess::notification_platform_bridge() { |
| 230 return nullptr; |
| 231 } |
| 232 |
| 228 message_center::MessageCenter* TestingBrowserProcess::message_center() { | 233 message_center::MessageCenter* TestingBrowserProcess::message_center() { |
| 229 return message_center::MessageCenter::Get(); | 234 return message_center::MessageCenter::Get(); |
| 230 } | 235 } |
| 231 | 236 |
| 232 IntranetRedirectDetector* TestingBrowserProcess::intranet_redirect_detector() { | 237 IntranetRedirectDetector* TestingBrowserProcess::intranet_redirect_detector() { |
| 233 return nullptr; | 238 return nullptr; |
| 234 } | 239 } |
| 235 | 240 |
| 236 void TestingBrowserProcess::CreateDevToolsHttpProtocolHandler( | 241 void TestingBrowserProcess::CreateDevToolsHttpProtocolHandler( |
| 237 const std::string& ip, | 242 const std::string& ip, |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 | 424 |
| 420 /////////////////////////////////////////////////////////////////////////////// | 425 /////////////////////////////////////////////////////////////////////////////// |
| 421 | 426 |
| 422 TestingBrowserProcessInitializer::TestingBrowserProcessInitializer() { | 427 TestingBrowserProcessInitializer::TestingBrowserProcessInitializer() { |
| 423 TestingBrowserProcess::CreateInstance(); | 428 TestingBrowserProcess::CreateInstance(); |
| 424 } | 429 } |
| 425 | 430 |
| 426 TestingBrowserProcessInitializer::~TestingBrowserProcessInitializer() { | 431 TestingBrowserProcessInitializer::~TestingBrowserProcessInitializer() { |
| 427 TestingBrowserProcess::DeleteInstance(); | 432 TestingBrowserProcess::DeleteInstance(); |
| 428 } | 433 } |
| OLD | NEW |