1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/display/chromeos/test/action_logger.h"
10 ActionLogger::ActionLogger() {
13 ActionLogger::~ActionLogger() {
16 void ActionLogger::AppendAction(const std::string
& action
) {
17 if (!actions_
.empty())
22 std::string
ActionLogger::GetActionsAndClear() {
23 std::string actions
= actions_
;