Sorin Jianu | 039032b | 2018-10-12 21:48:13 | [diff] [blame] | 1 | // 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 | |
| 9 | namespace update_client { |
| 10 | |
| 11 | namespace protocol_request { |
| 12 | |
| 13 | OS::OS() = default; |
| 14 | OS::OS(OS&&) = default; |
| 15 | OS::~OS() = default; |
| 16 | |
| 17 | Updater::Updater() = default; |
| 18 | Updater::Updater(const Updater&) = default; |
| 19 | Updater::~Updater() = default; |
| 20 | |
| 21 | UpdateCheck::UpdateCheck() = default; |
| 22 | UpdateCheck::~UpdateCheck() = default; |
| 23 | |
| 24 | Ping::Ping() = default; |
| 25 | Ping::Ping(const Ping&) = default; |
| 26 | Ping::~Ping() = default; |
| 27 | |
| 28 | App::App() = default; |
| 29 | App::App(App&&) = default; |
| 30 | App::~App() = default; |
| 31 | |
| 32 | Request::Request() = default; |
| 33 | Request::Request(Request&&) = default; |
| 34 | Request::~Request() = default; |
| 35 | |
| 36 | } // namespace protocol_request |
| 37 | |
| 38 | } // namespace update_client |