OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 #include "components/ntp_content/ntp_content_service.h" |
| 5 |
| 6 namespace ntp_content { |
| 7 |
| 8 NTPContentService::NTPContentService( |
| 9 const std::string& application_language_code) |
| 10 : application_language_code_(application_language_code) {} |
| 11 |
| 12 NTPContentService::~NTPContentService() {} |
| 13 |
| 14 void NTPContentService::Shutdown() {} |
| 15 |
| 16 } // namespace ntp_content |
OLD | NEW |