Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: extensions/browser/runtime_api_delegate.cc

Issue 264743014: Move chrome.runtime to //extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698