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

Side by Side Diff: webkit/browser/fileapi/syncable/local_file_change_tracker_unittest.cc

Issue 19633002: Use a direct include of the message_loop header in webkit/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 "webkit/browser/fileapi/syncable/local_file_change_tracker.h" 5 #include "webkit/browser/fileapi/syncable/local_file_change_tracker.h"
6 6
7 #include <deque> 7 #include <deque>
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/files/scoped_temp_dir.h" 11 #include "base/files/scoped_temp_dir.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/message_loop.h" 13 #include "base/message_loop/message_loop.h"
14 #include "base/message_loop/message_loop_proxy.h" 14 #include "base/message_loop/message_loop_proxy.h"
15 #include "base/stl_util.h" 15 #include "base/stl_util.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "webkit/browser/blob/mock_blob_url_request_context.h" 17 #include "webkit/browser/blob/mock_blob_url_request_context.h"
18 #include "webkit/browser/fileapi/file_system_context.h" 18 #include "webkit/browser/fileapi/file_system_context.h"
19 #include "webkit/browser/fileapi/file_system_task_runners.h" 19 #include "webkit/browser/fileapi/file_system_task_runners.h"
20 #include "webkit/browser/fileapi/syncable/canned_syncable_file_system.h" 20 #include "webkit/browser/fileapi/syncable/canned_syncable_file_system.h"
21 #include "webkit/browser/fileapi/syncable/local_file_sync_context.h" 21 #include "webkit/browser/fileapi/syncable/local_file_sync_context.h"
22 #include "webkit/browser/fileapi/syncable/sync_status_code.h" 22 #include "webkit/browser/fileapi/syncable/sync_status_code.h"
23 #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h" 23 #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h"
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 ASSERT_EQ(2U, urls_to_process.size()); 595 ASSERT_EQ(2U, urls_to_process.size());
596 596
597 // The exact order of recursive removal cannot be determined. 597 // The exact order of recursive removal cannot be determined.
598 EXPECT_TRUE(URL(kPath1) == urls_to_process[0] || 598 EXPECT_TRUE(URL(kPath1) == urls_to_process[0] ||
599 URL(kPath2) == urls_to_process[0]); 599 URL(kPath2) == urls_to_process[0]);
600 EXPECT_TRUE(URL(kPath1) == urls_to_process[1] || 600 EXPECT_TRUE(URL(kPath1) == urls_to_process[1] ||
601 URL(kPath2) == urls_to_process[1]); 601 URL(kPath2) == urls_to_process[1]);
602 } 602 }
603 603
604 } // namespace sync_file_system 604 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698