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

Unified Diff: chrome/browser/chromeos/dbus/mock_dbus_thread_manager.cc

Issue 8400077: chromeos: Rename functions to be PascalCase. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/dbus/mock_dbus_thread_manager.cc
diff --git a/chrome/browser/chromeos/dbus/mock_dbus_thread_manager.cc b/chrome/browser/chromeos/dbus/mock_dbus_thread_manager.cc
index aee4a24db70bd887832e35fde90fd1495a8a1ab3..53f8384f6fa8a2e0f318d6515a78bccf5e437a49 100644
--- a/chrome/browser/chromeos/dbus/mock_dbus_thread_manager.cc
+++ b/chrome/browser/chromeos/dbus/mock_dbus_thread_manager.cc
@@ -22,17 +22,17 @@ MockDBusThreadManager::MockDBusThreadManager()
mock_sensors_client_(new MockSensorsClient),
mock_session_manager_client_(new MockSessionManagerClient),
mock_speech_synthesizer_client_(new MockSpeechSynthesizerClient) {
- EXPECT_CALL(*this, bluetooth_adapter_client())
+ EXPECT_CALL(*this, GetBluetoothAdapterClient())
.WillRepeatedly(Return(mock_bluetooth_adapter_client_.get()));
- EXPECT_CALL(*this, bluetooth_manager_client())
+ EXPECT_CALL(*this, GetBluetoothManagerClient())
.WillRepeatedly(Return(mock_bluetooth_manager_client()));
- EXPECT_CALL(*this, power_manager_client())
+ EXPECT_CALL(*this, GetPowerManagerClient())
.WillRepeatedly(Return(mock_power_manager_client_.get()));
- EXPECT_CALL(*this, sensors_client())
+ EXPECT_CALL(*this, GetSensorsClient())
.WillRepeatedly(Return(mock_sensors_client_.get()));
- EXPECT_CALL(*this, session_manager_client())
+ EXPECT_CALL(*this, GetSessionManagerClient())
.WillRepeatedly(Return(mock_session_manager_client_.get()));
- EXPECT_CALL(*this, speech_synthesizer_client())
+ EXPECT_CALL(*this, GetSpeechSynthesizerClient())
.WillRepeatedly(Return(mock_speech_synthesizer_client_.get()));
}
« no previous file with comments | « chrome/browser/chromeos/dbus/mock_dbus_thread_manager.h ('k') | chrome/browser/chromeos/enterprise_extension_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698