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

Side by Side Diff: chromeos/dbus/fake_power_manager_client.h

Issue 697953002: ObserverList::HasObserver now takes a const pointer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile errors (ChromeOS unit tests). Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « chromeos/dbus/fake_cras_audio_client.cc ('k') | chromeos/dbus/fake_power_manager_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ 6 #define CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 19 matching lines...) Expand all
30 int num_set_policy_calls() const { return num_set_policy_calls_; } 30 int num_set_policy_calls() const { return num_set_policy_calls_; }
31 int num_set_is_projecting_calls() const { 31 int num_set_is_projecting_calls() const {
32 return num_set_is_projecting_calls_; 32 return num_set_is_projecting_calls_;
33 } 33 }
34 bool is_projecting() const { return is_projecting_; } 34 bool is_projecting() const { return is_projecting_; }
35 35
36 // PowerManagerClient overrides 36 // PowerManagerClient overrides
37 virtual void Init(dbus::Bus* bus) override; 37 virtual void Init(dbus::Bus* bus) override;
38 virtual void AddObserver(Observer* observer) override; 38 virtual void AddObserver(Observer* observer) override;
39 virtual void RemoveObserver(Observer* observer) override; 39 virtual void RemoveObserver(Observer* observer) override;
40 virtual bool HasObserver(Observer* observer) override; 40 virtual bool HasObserver(const Observer* observer) const override;
41 virtual void DecreaseScreenBrightness(bool allow_off) override; 41 virtual void DecreaseScreenBrightness(bool allow_off) override;
42 virtual void IncreaseScreenBrightness() override; 42 virtual void IncreaseScreenBrightness() override;
43 virtual void SetScreenBrightnessPercent( 43 virtual void SetScreenBrightnessPercent(
44 double percent, bool gradual) override; 44 double percent, bool gradual) override;
45 virtual void GetScreenBrightnessPercent( 45 virtual void GetScreenBrightnessPercent(
46 const GetScreenBrightnessPercentCallback& callback) override; 46 const GetScreenBrightnessPercentCallback& callback) override;
47 virtual void DecreaseKeyboardBrightness() override; 47 virtual void DecreaseKeyboardBrightness() override;
48 virtual void IncreaseKeyboardBrightness() override; 48 virtual void IncreaseKeyboardBrightness() override;
49 virtual void RequestStatusUpdate() override; 49 virtual void RequestStatusUpdate() override;
50 virtual void RequestSuspend() override; 50 virtual void RequestSuspend() override;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 // Last projecting state set in SetIsProjecting(). 90 // Last projecting state set in SetIsProjecting().
91 bool is_projecting_; 91 bool is_projecting_;
92 92
93 DISALLOW_COPY_AND_ASSIGN(FakePowerManagerClient); 93 DISALLOW_COPY_AND_ASSIGN(FakePowerManagerClient);
94 }; 94 };
95 95
96 } // namespace chromeos 96 } // namespace chromeos
97 97
98 #endif // CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ 98 #endif // CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_
OLDNEW
« no previous file with comments | « chromeos/dbus/fake_cras_audio_client.cc ('k') | chromeos/dbus/fake_power_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698