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
7namespace extensions {
8
9RuntimeAPIDelegate::UpdateCheckResult::UpdateCheckResult(
10    bool success,
11    const std::string& response,
12    const std::string& version)
13    : success(success), response(response), version(version) {
14}
15
16}  // namespace extensions
17