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

Unified Diff: chrome/browser/chromeos/dbus/dbus_thread_manager.h

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/dbus_thread_manager.h
diff --git a/chrome/browser/chromeos/dbus/dbus_thread_manager.h b/chrome/browser/chromeos/dbus/dbus_thread_manager.h
index fdac52932d562c0effff9d2635c4254acca547c3..df9c35f0b6f7bd82e3bdb08aba33b50d7131901e 100644
--- a/chrome/browser/chromeos/dbus/dbus_thread_manager.h
+++ b/chrome/browser/chromeos/dbus/dbus_thread_manager.h
@@ -70,31 +70,31 @@ class DBusThreadManager {
// Returns the bluetooth adapter client, owned by DBusThreadManager.
// Do not cache this pointer and use it after DBusThreadManager is shut
// down.
- virtual BluetoothAdapterClient* bluetooth_adapter_client() = 0;
+ virtual BluetoothAdapterClient* GetBluetoothAdapterClient() = 0;
// Returns the bluetooth manager client, owned by DBusThreadManager.
// Do not cache this pointer and use it after DBusThreadManager is shut
// down.
- virtual BluetoothManagerClient* bluetooth_manager_client() = 0;
+ virtual BluetoothManagerClient* GetBluetoothManagerClient() = 0;
// Returns the power manager client, owned by DBusThreadManager.
// See also comments at session_manager_client().
- virtual PowerManagerClient* power_manager_client() = 0;
+ virtual PowerManagerClient* GetPowerManagerClient() = 0;
// Returns the session manager client, owned by DBusThreadManager.
// Do not cache this pointer and use it after DBusThreadManager is shut
// down.
- virtual SensorsClient* sensors_client() = 0;
+ virtual SensorsClient* GetSensorsClient() = 0;
// Returns the session manager client, owned by DBusThreadManager.
// Do not cache this pointer and use it after DBusThreadManager is shut
// down.
- virtual SessionManagerClient* session_manager_client() = 0;
+ virtual SessionManagerClient* GetSessionManagerClient() = 0;
// Returns the speech synthesizer client, owned by DBusThreadManager.
// Do not cache this pointer and use it after DBusThreadManager is shut
// down.
- virtual SpeechSynthesizerClient* speech_synthesizer_client() = 0;
+ virtual SpeechSynthesizerClient* GetSpeechSynthesizerClient() = 0;
virtual ~DBusThreadManager();
« no previous file with comments | « chrome/browser/chromeos/chrome_browser_main_chromeos.cc ('k') | chrome/browser/chromeos/dbus/dbus_thread_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698