| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "sql/mojo/sql_test_base.h" | 5 #include "sql/mojo/sql_test_base.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include "mojo/application/public/cpp/application_impl.h" | 10 #include "mojo/application/public/cpp/application_impl.h" |
| 8 #include "mojo/util/capture_util.h" | 11 #include "mojo/util/capture_util.h" |
| 9 #include "sql/mojo/mojo_vfs.h" | 12 #include "sql/mojo/mojo_vfs.h" |
| 10 #include "sql/test/test_helpers.h" | 13 #include "sql/test/test_helpers.h" |
| 11 | 14 |
| 12 using mojo::Capture; | 15 using mojo::Capture; |
| 13 | 16 |
| 14 namespace sql { | 17 namespace sql { |
| 15 | 18 |
| 16 SQLTestBase::SQLTestBase() | 19 SQLTestBase::SQLTestBase() |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 db_.Close(); | 156 db_.Close(); |
| 154 vfs_.reset(); | 157 vfs_.reset(); |
| 155 | 158 |
| 156 ApplicationTestBase::TearDown(); | 159 ApplicationTestBase::TearDown(); |
| 157 } | 160 } |
| 158 | 161 |
| 159 void SQLTestBase::OnFileSystemShutdown() { | 162 void SQLTestBase::OnFileSystemShutdown() { |
| 160 } | 163 } |
| 161 | 164 |
| 162 } // namespace sql | 165 } // namespace sql |
| OLD | NEW |