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 "chrome/browser/chromeos/file_system_provider/registry.h" | 5 #include "chrome/browser/chromeos/file_system_provider/registry.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info
.h" | 12 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info
.h" |
13 #include "chrome/common/extensions/api/file_system_provider_capabilities/file_sy
stem_provider_capabilities_handler.h" | 13 #include "chrome/common/extensions/api/file_system_provider_capabilities/file_sy
stem_provider_capabilities_handler.h" |
14 #include "chrome/common/pref_names.h" | 14 #include "chrome/common/pref_names.h" |
15 #include "chrome/test/base/testing_browser_process.h" | 15 #include "chrome/test/base/testing_browser_process.h" |
16 #include "chrome/test/base/testing_pref_service_syncable.h" | |
17 #include "chrome/test/base/testing_profile.h" | 16 #include "chrome/test/base/testing_profile.h" |
18 #include "chrome/test/base/testing_profile_manager.h" | 17 #include "chrome/test/base/testing_profile_manager.h" |
| 18 #include "components/syncable_prefs/testing_pref_service_syncable.h" |
19 #include "components/user_prefs/user_prefs.h" | 19 #include "components/user_prefs/user_prefs.h" |
20 #include "content/public/test/test_browser_thread_bundle.h" | 20 #include "content/public/test/test_browser_thread_bundle.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 | 22 |
23 namespace chromeos { | 23 namespace chromeos { |
24 namespace file_system_provider { | 24 namespace file_system_provider { |
25 namespace { | 25 namespace { |
26 | 26 |
27 const char kTemporaryOrigin[] = | 27 const char kTemporaryOrigin[] = |
28 "chrome-extension://abcabcabcabcabcabcabcabcabcabcabcabca/"; | 28 "chrome-extension://abcabcabcabcabcabcabcabcabcabcabcabca/"; |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 fake_watcher_.entry_path.value(), &watcher)); | 314 fake_watcher_.entry_path.value(), &watcher)); |
315 | 315 |
316 std::string last_tag; | 316 std::string last_tag; |
317 EXPECT_TRUE(watcher->GetStringWithoutPathExpansion(kPrefKeyWatcherLastTag, | 317 EXPECT_TRUE(watcher->GetStringWithoutPathExpansion(kPrefKeyWatcherLastTag, |
318 &last_tag)); | 318 &last_tag)); |
319 EXPECT_EQ(fake_watcher_.last_tag, last_tag); | 319 EXPECT_EQ(fake_watcher_.last_tag, last_tag); |
320 } | 320 } |
321 | 321 |
322 } // namespace file_system_provider | 322 } // namespace file_system_provider |
323 } // namespace chromeos | 323 } // namespace chromeos |
OLD | NEW |