| Index: ash/common/test/test_palette_delegate.h
|
| diff --git a/ash/common/test/test_palette_delegate.h b/ash/common/test/test_palette_delegate.h
|
| index 896232dace046c6f92de817729d14e3454815b0f..76fa80e8411f2859199cc0b43dd085499b11a0bd 100644
|
| --- a/ash/common/test/test_palette_delegate.h
|
| +++ b/ash/common/test/test_palette_delegate.h
|
| @@ -20,16 +20,30 @@ class TestPaletteDelegate : public PaletteDelegate {
|
|
|
| int has_note_app_count() const { return has_note_app_count_; }
|
|
|
| + bool partial_magnifier_state() const { return partial_magnifier_state_; }
|
| +
|
| + int take_screenshot_count() const { return take_screenshot_count_; }
|
| +
|
| + int take_partial_screenshot_count() const {
|
| + return take_partial_screenshot_count_;
|
| + }
|
| +
|
| void set_has_note_app(bool has_note_app) { has_note_app_ = has_note_app; }
|
|
|
| private:
|
| // PaletteDelegate:
|
| void CreateNote() override;
|
| bool HasNoteApp() override;
|
| + void SetPartialMagnifierState(bool enabled) override;
|
| + void TakeScreenshot() override;
|
| + void TakePartialScreenshot() override;
|
|
|
| bool has_note_app_ = false;
|
| int create_note_count_ = 0;
|
| int has_note_app_count_ = 0;
|
| + bool partial_magnifier_state_ = false;
|
| + int take_screenshot_count_ = 0;
|
| + int take_partial_screenshot_count_ = 0;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TestPaletteDelegate);
|
| };
|
|
|