| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |