| Index: chrome/test/base/testing_browser_process.cc
|
| diff --git a/chrome/test/base/testing_browser_process.cc b/chrome/test/base/testing_browser_process.cc
|
| index b573e38afec0a88ea1555f32794b7d651f4fbd7b..64bee2c4b3d7ab6127d437a6c050f02daab56f2b 100644
|
| --- a/chrome/test/base/testing_browser_process.cc
|
| +++ b/chrome/test/base/testing_browser_process.cc
|
| @@ -134,10 +134,15 @@ TestingBrowserProcess::extension_event_router_forwarder() {
|
| }
|
|
|
| NotificationUIManager* TestingBrowserProcess::notification_ui_manager() {
|
| +#if defined(ENABLE_NOTIFICATIONS)
|
| if (!notification_ui_manager_.get())
|
| notification_ui_manager_.reset(
|
| NotificationUIManager::Create(local_state()));
|
| return notification_ui_manager_.get();
|
| +#else
|
| + NOTIMPLEMENTED();
|
| + return NULL;
|
| +#endif
|
| }
|
|
|
| GoogleURLTracker* TestingBrowserProcess::google_url_tracker() {
|
|
|