OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "apps/test/apps_test_suite_base.h" |
| 6 |
| 7 #include "apps/shell/common/shell_content_client.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 |
| 10 namespace apps { |
| 11 |
| 12 AppsTestSuiteBase::AppsTestSuiteBase(int argc, char** argv) |
| 13 : content::ContentTestSuiteBase(argc, argv) {} |
| 14 |
| 15 AppsTestSuiteBase::~AppsTestSuiteBase() {} |
| 16 |
| 17 } // namespace apps |
OLD | NEW |