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

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

Issue 1168383002: Implement sidebar support for extension action popups Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 "extensions/shell/browser/shell_extension_system.h" 5 #include "extensions/shell/browser/shell_extension_system.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 } 116 }
117 117
118 StateStore* ShellExtensionSystem::state_store() { 118 StateStore* ShellExtensionSystem::state_store() {
119 return nullptr; 119 return nullptr;
120 } 120 }
121 121
122 StateStore* ShellExtensionSystem::rules_store() { 122 StateStore* ShellExtensionSystem::rules_store() {
123 return nullptr; 123 return nullptr;
124 } 124 }
125 125
126 SidebarManager* ShellExtensionSystem::sidebar_manager() {
127 return nullptr;
128 }
129
126 InfoMap* ShellExtensionSystem::info_map() { 130 InfoMap* ShellExtensionSystem::info_map() {
127 if (!info_map_.get()) 131 if (!info_map_.get())
128 info_map_ = new InfoMap; 132 info_map_ = new InfoMap;
129 return info_map_.get(); 133 return info_map_.get();
130 } 134 }
131 135
132 QuotaService* ShellExtensionSystem::quota_service() { 136 QuotaService* ShellExtensionSystem::quota_service() {
133 return quota_service_.get(); 137 return quota_service_.get();
134 } 138 }
135 139
(...skipping 21 matching lines...) Expand all
157 ContentVerifier* ShellExtensionSystem::content_verifier() { 161 ContentVerifier* ShellExtensionSystem::content_verifier() {
158 return nullptr; 162 return nullptr;
159 } 163 }
160 164
161 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions( 165 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
162 const Extension* extension) { 166 const Extension* extension) {
163 return make_scoped_ptr(new ExtensionSet()); 167 return make_scoped_ptr(new ExtensionSet());
164 } 168 }
165 169
166 } // namespace extensions 170 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698