Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: gpu/khronos_glcts_support/native/main.cc

Issue 817653003: Update from https://crrev.com/309717 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include <cstdio> 5 #include <cstdio>
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 10
(...skipping 25 matching lines...) Expand all
36 break; 36 break;
37 } 37 }
38 } 38 }
39 catch (const std::exception& e) { 39 catch (const std::exception& e) {
40 tcu::die("%s", e.what()); 40 tcu::die("%s", e.what());
41 } 41 }
42 } 42 }
43 43
44 int main(int argc, char *argv[]) { 44 int main(int argc, char *argv[]) {
45 base::AtExitManager at_exit; 45 base::AtExitManager at_exit;
46 CommandLine::Init(argc, argv); 46 base::CommandLine::Init(argc, argv);
47 base::MessageLoopForUI message_loop; 47 base::MessageLoopForUI message_loop;
48 48
49 GTFMain(argc, argv); 49 GTFMain(argc, argv);
50 50
51 return 0; 51 return 0;
52 } 52 }
OLDNEW
« no previous file with comments | « gpu/khronos_glcts_support/khronos_glcts_test.cc ('k') | gpu/tools/compositor_model_bench/compositor_model_bench.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698