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

Unified Diff: ash/common/test/test_palette_delegate.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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
« no previous file with comments | « ash/common/test/test_palette_delegate.h ('k') | ash/common/test/test_session_state_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/test/test_palette_delegate.cc
diff --git a/ash/common/test/test_palette_delegate.cc b/ash/common/test/test_palette_delegate.cc
deleted file mode 100644
index ab5692fb7d220b38478473c32519f2bbdeb7c858..0000000000000000000000000000000000000000
--- a/ash/common/test/test_palette_delegate.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ash/common/test/test_palette_delegate.h"
-
-namespace ash {
-
-TestPaletteDelegate::TestPaletteDelegate() {}
-
-TestPaletteDelegate::~TestPaletteDelegate() {}
-
-std::unique_ptr<PaletteDelegate::EnableListenerSubscription>
-TestPaletteDelegate::AddPaletteEnableListener(
- const EnableListener& on_state_changed) {
- return nullptr;
-}
-
-void TestPaletteDelegate::CreateNote() {
- ++create_note_count_;
-}
-
-bool TestPaletteDelegate::HasNoteApp() {
- ++has_note_app_count_;
- return has_note_app_;
-}
-
-bool TestPaletteDelegate::ShouldAutoOpenPalette() {
- return should_auto_open_palette_;
-}
-
-bool TestPaletteDelegate::ShouldShowPalette() {
- return should_show_palette_;
-}
-
-void TestPaletteDelegate::TakeScreenshot() {
- ++take_screenshot_count_;
-}
-
-void TestPaletteDelegate::TakePartialScreenshot(const base::Closure& done) {
- ++take_partial_screenshot_count_;
- partial_screenshot_done_ = done;
-}
-
-void TestPaletteDelegate::CancelPartialScreenshot() {}
-
-} // namespace ash
« no previous file with comments | « ash/common/test/test_palette_delegate.h ('k') | ash/common/test/test_session_state_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698