blob: 2dd3cc6b0c8b04560e713736c1bfe33a35f5d29d [file] [log] [blame]
Sorin Jianu039032b2018-10-12 21:48:131// Copyright (c) 2018 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
5#include "components/update_client/protocol_definition.h"
6
7#include "base/values.h"
8
9namespace update_client {
10
11namespace protocol_request {
12
13OS::OS() = default;
14OS::OS(OS&&) = default;
15OS::~OS() = default;
16
17Updater::Updater() = default;
18Updater::Updater(const Updater&) = default;
19Updater::~Updater() = default;
20
21UpdateCheck::UpdateCheck() = default;
22UpdateCheck::~UpdateCheck() = default;
23
24Ping::Ping() = default;
25Ping::Ping(const Ping&) = default;
26Ping::~Ping() = default;
27
28App::App() = default;
29App::App(App&&) = default;
30App::~App() = default;
31
32Request::Request() = default;
33Request::Request(Request&&) = default;
34Request::~Request() = default;
35
36} // namespace protocol_request
37
38} // namespace update_client