OLD | NEW |
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 Loading... |
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 |
OLD | NEW |