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

Side by Side Diff: chrome/browser/sync/syncable/directory_backing_store_unittest.cc

Issue 7048007: Move scoped_temp_dir and scoped_native_library back from base/memory to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unknwn Created 9 years, 7 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "testing/gtest/include/gtest/gtest.h" 5 #include "testing/gtest/include/gtest/gtest.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "app/sql/connection.h" 9 #include "app/sql/connection.h"
10 #include "app/sql/statement.h" 10 #include "app/sql/statement.h"
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/scoped_temp_dir.h" 14 #include "base/scoped_temp_dir.h"
15 #include "base/stl_util-inl.h" 15 #include "base/stl_util-inl.h"
16 #include "base/string_number_conversions.h" 16 #include "base/string_number_conversions.h"
17 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" 17 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h"
18 #include "chrome/browser/sync/protocol/sync.pb.h" 18 #include "chrome/browser/sync/protocol/sync.pb.h"
19 #include "chrome/browser/sync/syncable/directory_backing_store.h" 19 #include "chrome/browser/sync/syncable/directory_backing_store.h"
20 #include "chrome/browser/sync/syncable/directory_manager.h" 20 #include "chrome/browser/sync/syncable/directory_manager.h"
21 #include "chrome/browser/sync/syncable/syncable-inl.h" 21 #include "chrome/browser/sync/syncable/syncable-inl.h"
22 #include "chrome/browser/sync/syncable/syncable.h" 22 #include "chrome/browser/sync/syncable/syncable.h"
23 #include "testing/gtest/include/gtest/gtest-param-test.h" 23 #include "testing/gtest/include/gtest/gtest-param-test.h"
24 24
(...skipping 1526 matching lines...) Expand 10 before | Expand all | Expand 10 after
1551 1551
1552 STLDeleteElements(&index); 1552 STLDeleteElements(&index);
1553 dbs->LoadEntries(&index); 1553 dbs->LoadEntries(&index);
1554 EXPECT_EQ(0U, index.size()); 1554 EXPECT_EQ(0U, index.size());
1555 1555
1556 dbs->EndLoad(); 1556 dbs->EndLoad();
1557 dbs->EndSave(); 1557 dbs->EndSave();
1558 } 1558 }
1559 1559
1560 } // namespace syncable 1560 } // namespace syncable
OLDNEW
« no previous file with comments | « chrome/browser/sync/profile_sync_service_session_unittest.cc ('k') | chrome/browser/sync/syncable/syncable_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698