chromoting_event_log_writer.h 543 B

123456789101112131415161718192021
  1. // Copyright 2016 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.
  4. #ifndef REMOTING_BASE_CHROMOTING_EVENT_LOG_WRITER_H_
  5. #define REMOTING_BASE_CHROMOTING_EVENT_LOG_WRITER_H_
  6. namespace remoting {
  7. class ChromotingEvent;
  8. class ChromotingEventLogWriter {
  9. public:
  10. virtual ~ChromotingEventLogWriter() {}
  11. virtual void Log(const ChromotingEvent& entry) = 0;
  12. };
  13. } // namespace remoting
  14. #endif // REMOTING_BASE_CHROMOTING_EVENT_LOG_WRITER_H_