// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_BASE_CHROMOTING_EVENT_H_ #define REMOTING_BASE_CHROMOTING_EVENT_H_ #include <memory> #include <string> #include "base/values.h" #include "remoting/proto/remoting/v1/chromoting_event.pb.h" namespace remoting { // TODO(yuweih): See if we can rewrite this in Protobuf. // This is the representation of the log entry being sent to the telemetry // server. The content should be synced with chromoting_event.js and // chromoting_extensions.proto. class ChromotingEvent { … }; } // namespace remoting #endif // REMOTING_BASE_CHROMOTING_EVENT_H_