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

Unified Diff: chrome/browser/ui/webui/options/chromeos/system_options_handler.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
« no previous file with comments | « chrome/browser/ui/browser_list.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/options/chromeos/system_options_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/system_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/system_options_handler.cc
index 9b600890145db99c25ab044ba92b80fdf0fc751d..18d282d8d96f77745927af553ff5a7381cce6746 100644
--- a/chrome/browser/ui/webui/options/chromeos/system_options_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/system_options_handler.cc
@@ -154,12 +154,12 @@ void SystemOptionsHandler::DecreaseScreenBrightnessCallback(
const ListValue* args) {
// Do not allow the options button to turn off the backlight, as that
// can make it very difficult to see the increase brightness button.
- chromeos::DBusThreadManager::Get()->power_manager_client()->
+ chromeos::DBusThreadManager::Get()->GetPowerManagerClient()->
DecreaseScreenBrightness(false);
}
void SystemOptionsHandler::IncreaseScreenBrightnessCallback(
const ListValue* args) {
- chromeos::DBusThreadManager::Get()->power_manager_client()->
+ chromeos::DBusThreadManager::Get()->GetPowerManagerClient()->
IncreaseScreenBrightness();
}
« no previous file with comments | « chrome/browser/ui/browser_list.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698