blob: 2b2885b494cb25680f0227d7c0af84042f44939a [file] [log] [blame]
// Copyright 2015 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 CHROMEOS_SERVICES_SECURE_CHANNEL_FAKE_WIRE_MESSAGE_H_
#define CHROMEOS_SERVICES_SECURE_CHANNEL_FAKE_WIRE_MESSAGE_H_
#include <memory>
#include <string>
#include "base/macros.h"
#include "chromeos/services/secure_channel/wire_message.h"
namespace chromeos {
namespace secure_channel {
class FakeWireMessage : public WireMessage {
public:
FakeWireMessage(const std::string& payload, const std::string& feature);
// WireMessage:
std::string Serialize() const override;
private:
DISALLOW_COPY_AND_ASSIGN(FakeWireMessage);
};
} // namespace secure_channel
} // namespace chromeos
#endif // CHROMEOS_SERVICES_SECURE_CHANNEL_FAKE_WIRE_MESSAGE_H_