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

Side by Side Diff: chrome/browser/chromeos/drive/file_system_unittest.cc

Issue 1190203002: Move (most of) chrome/browser/drive into components/drive/service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... 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 (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 #include "chrome/browser/chromeos/drive/file_system.h" 5 #include "chrome/browser/chromeos/drive/file_system.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/files/scoped_temp_dir.h" 13 #include "base/files/scoped_temp_dir.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/prefs/testing_pref_service.h" 15 #include "base/prefs/testing_pref_service.h"
16 #include "base/run_loop.h" 16 #include "base/run_loop.h"
17 #include "base/single_thread_task_runner.h" 17 #include "base/single_thread_task_runner.h"
18 #include "base/thread_task_runner_handle.h" 18 #include "base/thread_task_runner_handle.h"
19 #include "chrome/browser/chromeos/drive/change_list_loader.h" 19 #include "chrome/browser/chromeos/drive/change_list_loader.h"
20 #include "chrome/browser/chromeos/drive/drive.pb.h" 20 #include "chrome/browser/chromeos/drive/drive.pb.h"
21 #include "chrome/browser/chromeos/drive/drive_test_util.h" 21 #include "chrome/browser/chromeos/drive/drive_test_util.h"
22 #include "chrome/browser/chromeos/drive/fake_free_disk_space_getter.h" 22 #include "chrome/browser/chromeos/drive/fake_free_disk_space_getter.h"
23 #include "chrome/browser/chromeos/drive/file_change.h" 23 #include "chrome/browser/chromeos/drive/file_change.h"
24 #include "chrome/browser/chromeos/drive/file_system_core_util.h" 24 #include "chrome/browser/chromeos/drive/file_system_core_util.h"
25 #include "chrome/browser/chromeos/drive/file_system_observer.h" 25 #include "chrome/browser/chromeos/drive/file_system_observer.h"
26 #include "chrome/browser/chromeos/drive/job_scheduler.h" 26 #include "chrome/browser/chromeos/drive/job_scheduler.h"
27 #include "chrome/browser/chromeos/drive/sync_client.h" 27 #include "chrome/browser/chromeos/drive/sync_client.h"
28 #include "chrome/browser/drive/drive_api_util.h" 28 #include "components/drive/drive_api_util.h"
29 #include "chrome/browser/drive/event_logger.h" 29 #include "components/drive/event_logger.h"
30 #include "chrome/browser/drive/fake_drive_service.h" 30 #include "components/drive/service/fake_drive_service.h"
31 #include "chrome/browser/drive/test_util.h" 31 #include "components/drive/service/test_util.h"
32 #include "content/public/browser/browser_thread.h" 32 #include "content/public/browser/browser_thread.h"
33 #include "content/public/test/test_browser_thread_bundle.h" 33 #include "content/public/test/test_browser_thread_bundle.h"
34 #include "google_apis/drive/drive_api_parser.h" 34 #include "google_apis/drive/drive_api_parser.h"
35 #include "google_apis/drive/test_util.h" 35 #include "google_apis/drive/test_util.h"
36 #include "testing/gtest/include/gtest/gtest.h" 36 #include "testing/gtest/include/gtest/gtest.h"
37 37
38 namespace drive { 38 namespace drive {
39 namespace { 39 namespace {
40 40
41 // Counts the number of invocation, and if it increased up to |expected_counter| 41 // Counts the number of invocation, and if it increased up to |expected_counter|
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 google_apis::test_util::CreateCopyResultCallback(&available)); 1055 google_apis::test_util::CreateCopyResultCallback(&available));
1056 content::RunAllBlockingPoolTasksUntilIdle(); 1056 content::RunAllBlockingPoolTasksUntilIdle();
1057 ASSERT_FALSE(available); 1057 ASSERT_FALSE(available);
1058 1058
1059 entry = GetResourceEntrySync(file_in_root); 1059 entry = GetResourceEntrySync(file_in_root);
1060 ASSERT_TRUE(entry); 1060 ASSERT_TRUE(entry);
1061 EXPECT_FALSE(entry->file_specific_info().cache_state().is_present()); 1061 EXPECT_FALSE(entry->file_specific_info().cache_state().is_present());
1062 } 1062 }
1063 1063
1064 } // namespace drive 1064 } // namespace drive
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698