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

Side by Side Diff: apps/shell/browser/shell_extension_system.cc

Issue 317993003: Send an onInstalled event for shared module update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 6 years, 6 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "apps/shell/browser/shell_extension_system.h" 5 #include "apps/shell/browser/shell_extension_system.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "apps/shell/browser/api/shell/shell_api.h" 9 #include "apps/shell/browser/api/shell/shell_api.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 } 173 }
174 174
175 const OneShotEvent& ShellExtensionSystem::ready() const { 175 const OneShotEvent& ShellExtensionSystem::ready() const {
176 return ready_; 176 return ready_;
177 } 177 }
178 178
179 ContentVerifier* ShellExtensionSystem::content_verifier() { 179 ContentVerifier* ShellExtensionSystem::content_verifier() {
180 return NULL; 180 return NULL;
181 } 181 }
182 182
183 scoped_ptr<const ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
184 const Extension* extension) {
185 scoped_ptr<ExtensionSet> empty(new ExtensionSet());
186 return empty.PassAs<const ExtensionSet>();
187 }
188
183 } // namespace extensions 189 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698