| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 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 "build/build_config.h" |
| 6 #include "chrome/app/chrome_main_delegate.h" |
| 7 #include "chrome/app/mash/chrome_test_catalog.h" |
| 8 |
| 9 extern "C" { |
| 10 int ChromeMain(int argc, const char** argv); |
| 11 } |
| 12 |
| 13 int main(int argc, const char** argv) { |
| 14 ChromeMainDelegate::InstallServiceCatalogFactory( |
| 15 base::Bind(&CreateChromeTestCatalog)); |
| 16 return ChromeMain(argc, argv); |
| 17 } |
| OLD | NEW |