Fix ChromeOS clang build after original change was reverted.

TBR=sque@chromium.org


Review URL: http://codereview.chromium.org/8769035

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112699 0039d316-1c4b-4281-b951-d872f2087c98
parent 3aeff323
...@@ -1344,8 +1344,6 @@ class TestingAutomationProvider : public AutomationProvider, ...@@ -1344,8 +1344,6 @@ class TestingAutomationProvider : public AutomationProvider,
// chromeos::PowerManagerClient::Observer overrides. // chromeos::PowerManagerClient::Observer overrides.
virtual void PowerChanged(const chromeos::PowerSupplyStatus& status) OVERRIDE; virtual void PowerChanged(const chromeos::PowerSupplyStatus& status) OVERRIDE;
virtual void LockScreen() OVERRIDE;
virtual void UnlockScreen() OVERRIDE;
#endif // defined(OS_CHROMEOS) #endif // defined(OS_CHROMEOS)
......
...@@ -1128,11 +1128,3 @@ void TestingAutomationProvider::PowerChanged( ...@@ -1128,11 +1128,3 @@ void TestingAutomationProvider::PowerChanged(
const chromeos::PowerSupplyStatus& status) { const chromeos::PowerSupplyStatus& status) {
power_status = 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.
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment