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

Side by Side Diff: chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc

Issue 146963006: Move blob/mock_blob_url_request_context to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix one more using clause Created 6 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <string> 5 #include <string>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/message_loop/message_loop.h" 11 #include "base/message_loop/message_loop.h"
12 #include "chrome/browser/sync_file_system/local/canned_syncable_file_system.h" 12 #include "chrome/browser/sync_file_system/local/canned_syncable_file_system.h"
13 #include "chrome/browser/sync_file_system/local/local_file_change_tracker.h" 13 #include "chrome/browser/sync_file_system/local/local_file_change_tracker.h"
14 #include "chrome/browser/sync_file_system/local/local_file_sync_context.h" 14 #include "chrome/browser/sync_file_system/local/local_file_sync_context.h"
15 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h" 15 #include "chrome/browser/sync_file_system/local/local_file_sync_status.h"
16 #include "chrome/browser/sync_file_system/local/sync_file_system_backend.h" 16 #include "chrome/browser/sync_file_system/local/sync_file_system_backend.h"
17 #include "chrome/browser/sync_file_system/local/syncable_file_operation_runner.h " 17 #include "chrome/browser/sync_file_system/local/syncable_file_operation_runner.h "
18 #include "chrome/browser/sync_file_system/local/syncable_file_system_operation.h " 18 #include "chrome/browser/sync_file_system/local/syncable_file_system_operation.h "
19 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" 19 #include "chrome/browser/sync_file_system/syncable_file_system_util.h"
20 #include "content/public/test/mock_blob_url_request_context.h"
20 #include "content/public/test/test_browser_thread_bundle.h" 21 #include "content/public/test/test_browser_thread_bundle.h"
21 #include "testing/gtest/include/gtest/gtest.h" 22 #include "testing/gtest/include/gtest/gtest.h"
22 #include "webkit/browser/blob/mock_blob_url_request_context.h"
23 #include "webkit/browser/fileapi/file_system_context.h" 23 #include "webkit/browser/fileapi/file_system_context.h"
24 #include "webkit/browser/fileapi/file_system_operation_runner.h" 24 #include "webkit/browser/fileapi/file_system_operation_runner.h"
25 25
26 using fileapi::FileSystemOperation; 26 using fileapi::FileSystemOperation;
27 using fileapi::FileSystemURL; 27 using fileapi::FileSystemURL;
28 using webkit_blob::MockBlobURLRequestContext; 28 using content::MockBlobURLRequestContext;
29 using webkit_blob::ScopedTextBlob; 29 using content::ScopedTextBlob;
30 using base::PlatformFileError; 30 using base::PlatformFileError;
31 31
32 namespace sync_file_system { 32 namespace sync_file_system {
33 33
34 namespace { 34 namespace {
35 const std::string kParent = "foo"; 35 const std::string kParent = "foo";
36 const std::string kFile = "foo/file"; 36 const std::string kFile = "foo/file";
37 const std::string kDir = "foo/dir"; 37 const std::string kDir = "foo/dir";
38 const std::string kChild = "foo/dir/bar"; 38 const std::string kChild = "foo/dir/bar";
39 const std::string kOther = "bar"; 39 const std::string kOther = "bar";
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 file_system_.operation_runner()->Truncate( 391 file_system_.operation_runner()->Truncate(
392 URL(kFile), 10, 392 URL(kFile), 10,
393 ExpectStatus(FROM_HERE, base::PLATFORM_FILE_OK)); 393 ExpectStatus(FROM_HERE, base::PLATFORM_FILE_OK));
394 file_system_.operation_runner()->Cancel( 394 file_system_.operation_runner()->Cancel(
395 id, ExpectStatus(FROM_HERE, base::PLATFORM_FILE_ERROR_INVALID_OPERATION)); 395 id, ExpectStatus(FROM_HERE, base::PLATFORM_FILE_ERROR_INVALID_OPERATION));
396 base::MessageLoop::current()->RunUntilIdle(); 396 base::MessageLoop::current()->RunUntilIdle();
397 EXPECT_EQ(2, callback_count_); 397 EXPECT_EQ(2, callback_count_);
398 } 398 }
399 399
400 } // namespace sync_file_system 400 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698