Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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/ntp_snippets/breaking_news/subscription_request_params.h" | |
|
fhorschig
2017/05/31 14:51:14
Looking at this rather sparse implementation ... w
mamir
2017/05/31 18:46:04
Acknowledged.
| |
| 6 | |
| 7 namespace ntp_snippets { | |
| 8 | |
| 9 SubscriptionRequestParams::SubscriptionRequestParams() = default; | |
| 10 SubscriptionRequestParams::SubscriptionRequestParams( | |
| 11 const SubscriptionRequestParams&) = default; | |
| 12 SubscriptionRequestParams::~SubscriptionRequestParams() = default; | |
| 13 | |
| 14 } // namespace ntp_snippets | |
| OLD | NEW |