Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: chromeos/dbus/mock_dbus_thread_manager_without_gmock.cc

Issue 11887008: Deprecate ShillNetworkClient and add GeolocationHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unittest Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "chromeos/dbus/mock_dbus_thread_manager_without_gmock.h" 5 #include "chromeos/dbus/mock_dbus_thread_manager_without_gmock.h"
6 6
7 #include "chromeos/dbus/dbus_thread_manager_observer.h" 7 #include "chromeos/dbus/dbus_thread_manager_observer.h"
8 #include "chromeos/dbus/ibus/mock_ibus_client.h" 8 #include "chromeos/dbus/ibus/mock_ibus_client.h"
9 #include "chromeos/dbus/ibus/mock_ibus_config_client.h" 9 #include "chromeos/dbus/ibus/mock_ibus_config_client.h"
10 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h" 10 #include "chromeos/dbus/ibus/mock_ibus_engine_factory_service.h"
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 NOTIMPLEMENTED(); 107 NOTIMPLEMENTED();
108 return NULL; 108 return NULL;
109 } 109 }
110 110
111 ShillManagerClient* 111 ShillManagerClient*
112 MockDBusThreadManagerWithoutGMock::GetShillManagerClient() { 112 MockDBusThreadManagerWithoutGMock::GetShillManagerClient() {
113 NOTIMPLEMENTED(); 113 NOTIMPLEMENTED();
114 return NULL; 114 return NULL;
115 } 115 }
116 116
117 ShillNetworkClient*
118 MockDBusThreadManagerWithoutGMock::GetShillNetworkClient() {
119 NOTIMPLEMENTED();
120 return NULL;
121 }
122
123 ShillProfileClient* 117 ShillProfileClient*
124 MockDBusThreadManagerWithoutGMock::GetShillProfileClient() { 118 MockDBusThreadManagerWithoutGMock::GetShillProfileClient() {
125 NOTIMPLEMENTED(); 119 NOTIMPLEMENTED();
126 return NULL; 120 return NULL;
127 } 121 }
128 122
129 ShillServiceClient* 123 ShillServiceClient*
130 MockDBusThreadManagerWithoutGMock::GetShillServiceClient() { 124 MockDBusThreadManagerWithoutGMock::GetShillServiceClient() {
131 NOTIMPLEMENTED(); 125 NOTIMPLEMENTED();
132 return NULL; 126 return NULL;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService( 219 void MockDBusThreadManagerWithoutGMock::RemoveIBusEngineService(
226 const dbus::ObjectPath& object_path) { 220 const dbus::ObjectPath& object_path) {
227 } 221 }
228 222
229 ibus::IBusPanelService* 223 ibus::IBusPanelService*
230 MockDBusThreadManagerWithoutGMock::GetIBusPanelService() { 224 MockDBusThreadManagerWithoutGMock::GetIBusPanelService() {
231 return mock_ibus_panel_service_.get(); 225 return mock_ibus_panel_service_.get();
232 } 226 }
233 227
234 } // namespace chromeos 228 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698