| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "app/sql/transaction.h" | |
| 12 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 13 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 14 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
| 15 #include "base/scoped_temp_dir.h" | 14 #include "base/scoped_temp_dir.h" |
| 16 #include "base/stl_util-inl.h" | 15 #include "base/stl_util-inl.h" |
| 17 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" | 16 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" |
| 18 #include "chrome/browser/sync/protocol/sync.pb.h" | 17 #include "chrome/browser/sync/protocol/sync.pb.h" |
| 19 #include "chrome/browser/sync/syncable/directory_backing_store.h" | 18 #include "chrome/browser/sync/syncable/directory_backing_store.h" |
| 20 #include "chrome/browser/sync/syncable/directory_manager.h" | 19 #include "chrome/browser/sync/syncable/directory_manager.h" |
| 21 #include "chrome/browser/sync/syncable/syncable-inl.h" | 20 #include "chrome/browser/sync/syncable/syncable-inl.h" |
| (...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 | 1080 |
| 1082 STLDeleteElements(&index); | 1081 STLDeleteElements(&index); |
| 1083 dbs->LoadEntries(&index); | 1082 dbs->LoadEntries(&index); |
| 1084 EXPECT_EQ(0U, index.size()); | 1083 EXPECT_EQ(0U, index.size()); |
| 1085 | 1084 |
| 1086 dbs->EndLoad(); | 1085 dbs->EndLoad(); |
| 1087 dbs->EndSave(); | 1086 dbs->EndSave(); |
| 1088 } | 1087 } |
| 1089 | 1088 |
| 1090 } // namespace syncable | 1089 } // namespace syncable |
| OLD | NEW |