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

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

Issue 412713002: Move apps/shell to extensions/shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 40% Created 6 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 | Annotate | Revision Log
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 "apps/shell/browser/shell_special_storage_policy.h" 5 #include "extensions/shell/browser/shell_special_storage_policy.h"
6 6
7 namespace apps { 7 namespace extensions {
8 8
9 ShellSpecialStoragePolicy::ShellSpecialStoragePolicy() { 9 ShellSpecialStoragePolicy::ShellSpecialStoragePolicy() {
10 } 10 }
11 11
12 ShellSpecialStoragePolicy::~ShellSpecialStoragePolicy() { 12 ShellSpecialStoragePolicy::~ShellSpecialStoragePolicy() {
13 } 13 }
14 14
15 bool ShellSpecialStoragePolicy::IsStorageProtected(const GURL& origin) { 15 bool ShellSpecialStoragePolicy::IsStorageProtected(const GURL& origin) {
16 return true; 16 return true;
17 } 17 }
(...skipping 15 matching lines...) Expand all
33 } 33 }
34 34
35 bool ShellSpecialStoragePolicy::IsFileHandler(const std::string& extension_id) { 35 bool ShellSpecialStoragePolicy::IsFileHandler(const std::string& extension_id) {
36 return true; 36 return true;
37 } 37 }
38 38
39 bool ShellSpecialStoragePolicy::HasIsolatedStorage(const GURL& origin) { 39 bool ShellSpecialStoragePolicy::HasIsolatedStorage(const GURL& origin) {
40 return false; 40 return false;
41 } 41 }
42 42
43 } // namespace apps 43 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/shell/browser/shell_special_storage_policy.h ('k') | extensions/shell/common/api/_api_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698