blob: 532156077879efd997f446c334cd49690cacca6b [file] [log] [blame]
// Copyright 2018 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.
#ifndef ASH_SYSTEM_TRACING_NOTIFICATION_CONTROLLER_H_
#define ASH_SYSTEM_TRACING_NOTIFICATION_CONTROLLER_H_
#include "ash/ash_export.h"
#include "ash/system/model/tracing_model.h"
namespace ash {
// Controller class to manage tracing enabled (chrome://slow) notification.
class ASH_EXPORT TracingNotificationController : public TracingObserver {
public:
TracingNotificationController();
TracingNotificationController(const TracingNotificationController&) = delete;
TracingNotificationController& operator=(
const TracingNotificationController&) = delete;
~TracingNotificationController() override;
// TracingObserver:
void OnTracingModeChanged() override;
private:
friend class TracingNotificationControllerTest;
void CreateNotification();
void RemoveNotification();
static const char kNotificationId[];
// True if performance tracing was active on the last time
// OnTracingModeChanged was called.
bool was_tracing_ = false;
TracingModel* const model_;
};
} // namespace ash
#endif // ASH_SYSTEM_TRACING_NOTIFICATION_CONTROLLER_H_