| OLD | NEW |
| 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 "chrome/browser/extensions/api/image_writer_private/test_utils.h" | 5 #include "chrome/browser/extensions/api/image_writer_private/test_utils.h" |
| 6 | 6 |
| 7 #include <string.h> |
| 8 |
| 7 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 8 | 10 |
| 9 #if defined(OS_CHROMEOS) | 11 #if defined(OS_CHROMEOS) |
| 10 #include "chromeos/dbus/dbus_thread_manager.h" | 12 #include "chromeos/dbus/dbus_thread_manager.h" |
| 11 #include "chromeos/dbus/fake_image_burner_client.h" | 13 #include "chromeos/dbus/fake_image_burner_client.h" |
| 12 #endif | 14 #endif |
| 13 | 15 |
| 14 namespace extensions { | 16 namespace extensions { |
| 15 namespace image_writer { | 17 namespace image_writer { |
| 16 | 18 |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 test_utils_.SetUp(); | 267 test_utils_.SetUp(); |
| 266 } | 268 } |
| 267 | 269 |
| 268 void ImageWriterUnitTestBase::TearDown() { | 270 void ImageWriterUnitTestBase::TearDown() { |
| 269 testing::Test::TearDown(); | 271 testing::Test::TearDown(); |
| 270 test_utils_.TearDown(); | 272 test_utils_.TearDown(); |
| 271 } | 273 } |
| 272 | 274 |
| 273 } // namespace image_writer | 275 } // namespace image_writer |
| 274 } // namespace extensions | 276 } // namespace extensions |
| OLD | NEW |