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 | |
Ken Rockot(use gerrit already)
2014/05/03 04:22:49
This file shouldn't exist. It will be deleted.
| |
3 // found in the LICENSE file. | |
4 | |
5 #include "extensions/browser/runtime_api_delegate.h" | |
6 | |
7 using extensions::core_api::runtime::GetPlatformInfo::Results::PlatformInfo; | |
8 | |
9 namespace extensions { | |
10 | |
11 base::Version RuntimeAPIDelegate::GetOldExtensionVersion( | |
12 const Extension* extension) { | |
13 return base::Version(); | |
14 } | |
15 | |
16 bool RuntimeAPIDelegate::RequestUpdateCheck( | |
17 const std::string& extension_id, | |
18 const RuntimeAPI::UpdateCheckCallback& callback) { | |
19 return false; | |
20 } | |
21 | |
22 bool RuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) { | |
23 return false; | |
24 } | |
25 | |
26 bool RuntimeAPIDelegate::RequestRestart(std::string* error_message) { | |
27 return false; | |
28 } | |
29 | |
30 } // namespace extensions | |
OLD | NEW |