| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // MediaFileSystemRegistry unit tests. | 5 // MediaFileSystemRegistry unit tests. |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "content/public/browser/web_contents.h" | 42 #include "content/public/browser/web_contents.h" |
| 43 #include "content/public/test/mock_render_process_host.h" | 43 #include "content/public/test/mock_render_process_host.h" |
| 44 #include "content/public/test/test_browser_thread.h" | 44 #include "content/public/test/test_browser_thread.h" |
| 45 #include "content/public/test/web_contents_tester.h" | 45 #include "content/public/test/web_contents_tester.h" |
| 46 #include "extensions/browser/extension_system.h" | 46 #include "extensions/browser/extension_system.h" |
| 47 #include "extensions/common/extension.h" | 47 #include "extensions/common/extension.h" |
| 48 #include "sync/api/string_ordinal.h" | 48 #include "sync/api/string_ordinal.h" |
| 49 #include "testing/gtest/include/gtest/gtest.h" | 49 #include "testing/gtest/include/gtest/gtest.h" |
| 50 | 50 |
| 51 #if defined(OS_CHROMEOS) | 51 #if defined(OS_CHROMEOS) |
| 52 #include "chrome/browser/chromeos/login/users/user_manager.h" | 52 #include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h" |
| 53 #include "chrome/browser/chromeos/settings/cros_settings.h" | 53 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 54 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 54 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
| 55 #include "components/user_manager/user_manager.h" |
| 55 #endif | 56 #endif |
| 56 | 57 |
| 57 using content::BrowserThread; | 58 using content::BrowserThread; |
| 58 using storage_monitor::StorageInfo; | 59 using storage_monitor::StorageInfo; |
| 59 using storage_monitor::StorageMonitor; | 60 using storage_monitor::StorageMonitor; |
| 60 using storage_monitor::TestStorageMonitor; | 61 using storage_monitor::TestStorageMonitor; |
| 61 | 62 |
| 62 // Not anonymous so it can be friends with MediaFileSystemRegistry. | 63 // Not anonymous so it can be friends with MediaFileSystemRegistry. |
| 63 class TestMediaFileSystemContext : public MediaFileSystemContext { | 64 class TestMediaFileSystemContext : public MediaFileSystemContext { |
| 64 public: | 65 public: |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 fs_info.begin()->second.fsid).empty()); | 1072 fs_info.begin()->second.fsid).empty()); |
| 1072 | 1073 |
| 1073 // Revoke permission and ensure that the file system is revoked. | 1074 // Revoke permission and ensure that the file system is revoked. |
| 1074 SetGalleryPermission(profile_state, | 1075 SetGalleryPermission(profile_state, |
| 1075 profile_state->regular_permission_extension(), | 1076 profile_state->regular_permission_extension(), |
| 1076 device_id, | 1077 device_id, |
| 1077 false /*has access*/); | 1078 false /*has access*/); |
| 1078 EXPECT_TRUE(test_file_system_context()->GetRegisteredPath( | 1079 EXPECT_TRUE(test_file_system_context()->GetRegisteredPath( |
| 1079 fs_info.begin()->second.fsid).empty()); | 1080 fs_info.begin()->second.fsid).empty()); |
| 1080 } | 1081 } |
| OLD | NEW |