summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/automation/testing_automation_provider.h2
-rw-r--r--chrome/browser/automation/testing_automation_provider_chromeos.cc8
2 files changed, 0 insertions, 10 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h
index af26568..18be8a8 100644
--- a/chrome/browser/automation/testing_automation_provider.h
+++ b/chrome/browser/automation/testing_automation_provider.h
@@ -1344,8 +1344,6 @@ class TestingAutomationProvider : public AutomationProvider,
// chromeos::PowerManagerClient::Observer overrides.
virtual void PowerChanged(const chromeos::PowerSupplyStatus& status) OVERRIDE;
- virtual void LockScreen() OVERRIDE;
- virtual void UnlockScreen() OVERRIDE;
#endif // defined(OS_CHROMEOS)
diff --git a/chrome/browser/automation/testing_automation_provider_chromeos.cc b/chrome/browser/automation/testing_automation_provider_chromeos.cc
index b4d65dc..b339228 100644
--- a/chrome/browser/automation/testing_automation_provider_chromeos.cc
+++ b/chrome/browser/automation/testing_automation_provider_chromeos.cc
@@ -1128,11 +1128,3 @@ void TestingAutomationProvider::PowerChanged(
const chromeos::PowerSupplyStatus& status) {
power_status = status;
}
-
-void TestingAutomationProvider::LockScreen() {
- // Not used, but defined to make clang happy with the overloaded name.
-}
-
-void TestingAutomationProvider::UnlockScreen() {
- // Not used, but defined to make clang happy with the overloaded name.
-}