| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 // Provides a main() function for an empty dummy app. | 5 #include "ios/web/public/app/web_main_parts.h" |
| 6 int main(int argc, char *argv[]) { | 6 |
| 7 namespace web { |
| 8 |
| 9 int WebMainParts::PreCreateThreads() { |
| 7 return 0; | 10 return 0; |
| 8 } | 11 } |
| 12 |
| 13 } // namespace web |
| OLD | NEW |