Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / extensions / browser / api / runtime / runtime_api_delegate.cc
blobb012c74b5b0c369ceb7fb6f77d7a9808df910be4
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 bool RuntimeAPIDelegate::OpenOptionsPage(const Extension* extension) {
17 return false;
20 } // namespace extensions