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

Unified Diff: ui/display/chromeos/test/action_logger.cc

Issue 2540313002: Split //ui/display and create //ui/display/manager. (Closed)
Patch Set: Cleanup export header. Created 4 years 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 | « ui/display/chromeos/test/action_logger.h ('k') | ui/display/chromeos/test/action_logger_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/chromeos/test/action_logger.cc
diff --git a/ui/display/chromeos/test/action_logger.cc b/ui/display/chromeos/test/action_logger.cc
deleted file mode 100644
index 2afcb489eaa6f6ed6adc22157c1b3e48f932c325..0000000000000000000000000000000000000000
--- a/ui/display/chromeos/test/action_logger.cc
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2014 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 "ui/display/chromeos/test/action_logger.h"
-
-namespace ui {
-namespace test {
-
-ActionLogger::ActionLogger() {
-}
-
-ActionLogger::~ActionLogger() {
-}
-
-void ActionLogger::AppendAction(const std::string& action) {
- if (!actions_.empty())
- actions_ += ",";
- actions_ += action;
-}
-
-std::string ActionLogger::GetActionsAndClear() {
- std::string actions = actions_;
- actions_.clear();
- return actions;
-}
-
-} // namespace test
-} // namespace ui
« no previous file with comments | « ui/display/chromeos/test/action_logger.h ('k') | ui/display/chromeos/test/action_logger_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698