| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "chrome/browser/google/google_url_tracker.h" | 8 #include "chrome/browser/google/google_url_tracker.h" |
| 9 #include "chrome/browser/notifications/notification_ui_manager.h" | 9 #include "chrome/browser/notifications/notification_ui_manager.h" |
| 10 #include "chrome/browser/policy/browser_policy_connector.h" | 10 #include "chrome/browser/policy/browser_policy_connector.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 } | 71 } |
| 72 | 72 |
| 73 IconManager* TestingBrowserProcess::icon_manager() { | 73 IconManager* TestingBrowserProcess::icon_manager() { |
| 74 return NULL; | 74 return NULL; |
| 75 } | 75 } |
| 76 | 76 |
| 77 ThumbnailGenerator* TestingBrowserProcess::GetThumbnailGenerator() { | 77 ThumbnailGenerator* TestingBrowserProcess::GetThumbnailGenerator() { |
| 78 return NULL; | 78 return NULL; |
| 79 } | 79 } |
| 80 | 80 |
| 81 SidebarManager* TestingBrowserProcess::sidebar_manager() { | |
| 82 return NULL; | |
| 83 } | |
| 84 | |
| 85 TabCloseableStateWatcher* TestingBrowserProcess::tab_closeable_state_watcher() { | 81 TabCloseableStateWatcher* TestingBrowserProcess::tab_closeable_state_watcher() { |
| 86 return NULL; | 82 return NULL; |
| 87 } | 83 } |
| 88 | 84 |
| 89 BackgroundModeManager* TestingBrowserProcess::background_mode_manager() { | 85 BackgroundModeManager* TestingBrowserProcess::background_mode_manager() { |
| 90 return NULL; | 86 return NULL; |
| 91 } | 87 } |
| 92 | 88 |
| 93 StatusTray* TestingBrowserProcess::status_tray() { | 89 StatusTray* TestingBrowserProcess::status_tray() { |
| 94 return NULL; | 90 return NULL; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 } | 240 } |
| 245 | 241 |
| 246 void TestingBrowserProcess::SetIOThread(IOThread* io_thread) { | 242 void TestingBrowserProcess::SetIOThread(IOThread* io_thread) { |
| 247 io_thread_ = io_thread; | 243 io_thread_ = io_thread; |
| 248 } | 244 } |
| 249 | 245 |
| 250 void TestingBrowserProcess::SetBrowserPolicyConnector( | 246 void TestingBrowserProcess::SetBrowserPolicyConnector( |
| 251 policy::BrowserPolicyConnector* connector) { | 247 policy::BrowserPolicyConnector* connector) { |
| 252 browser_policy_connector_.reset(connector); | 248 browser_policy_connector_.reset(connector); |
| 253 } | 249 } |
| OLD | NEW |