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

Unified Diff: chrome/browser/ui/webui/options/chromeos/system_options_handler.h

Issue 8366016: Split out bluetooth UI handler from system UI handler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with trunk. 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/ui/webui/options/chromeos/system_options_handler.h
diff --git a/chrome/browser/ui/webui/options/chromeos/system_options_handler.h b/chrome/browser/ui/webui/options/chromeos/system_options_handler.h
index 082e6dfd4fa7632150205f28f412a320f96adc55..9281d93284fc8e5f595e6cccd3c51dd78e495f1a 100644
--- a/chrome/browser/ui/webui/options/chromeos/system_options_handler.h
+++ b/chrome/browser/ui/webui/options/chromeos/system_options_handler.h
@@ -35,27 +35,7 @@ class SystemOptionsHandler : public chromeos::CrosOptionsPageUIHandler {
void DecreaseScreenBrightnessCallback(const base::ListValue* args);
void IncreaseScreenBrightnessCallback(const base::ListValue* args);
- // Called when the 'Enable bluetooth' checkbox value is changed.
- // |args| will contain the checkbox checked state as a string
- // ("true" or "false").
- void BluetoothEnableChangeCallback(const base::ListValue* args);
-
- // Called when the 'Find Devices' button is pressed from the
- // Bluetooth settings.
- // |args| will contain the list of devices currently connected
- // devices according to the System options page.
- void FindBluetoothDevicesCallback(const base::ListValue* args);
-
- // Sends a notification to the Web UI of the status of a bluetooth device.
- // |device| is the decription of the device. The supported dictionary keys
- // for device are "deviceName", "deviceId", "deviceType" and "deviceStatus".
- void BluetoothDeviceNotification(const base::DictionaryValue& device);
-
private:
- // Simulates extracting a list of available bluetooth devices.
- // Called when emulating ChromeOS from a desktop environment.
- void GenerateFakeDeviceList();
-
DISALLOW_COPY_AND_ASSIGN(SystemOptionsHandler);
};

Powered by Google App Engine
This is Rietveld 408576698