OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 "extensions/browser/api/runtime/runtime_api_delegate.h" |
| 6 |
| 7 using extensions::core_api::runtime::GetPlatformInfo::Results::PlatformInfo; |
| 8 |
| 9 namespace extensions { |
| 10 |
| 11 RuntimeAPIDelegate::UpdateCheckResult::UpdateCheckResult( |
| 12 bool success, |
| 13 const std::string& response, |
| 14 const std::string& version) |
| 15 : success(success), response(response), version(version) { |
| 16 } |
| 17 |
| 18 } // namespace extensions |
OLD | NEW |