Add testing/scripts/OWNERS
[chromium-blink-merge.git] / extensions / browser / api / runtime / runtime_api_delegate.cc
blob3ead8b624496b4ff40a33e35edddfd2a8b650223
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.
5 #include "extensions/browser/api/runtime/runtime_api_delegate.h"
7 namespace extensions {
9 RuntimeAPIDelegate::UpdateCheckResult::UpdateCheckResult(
10 bool success,
11 const std::string& response,
12 const std::string& version)
13 : success(success), response(response), version(version) {
16 } // namespace extensions