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

Side by Side Diff: debugger/debuggermain.cpp

Issue 1329853005: Make SkGraphics::Term a no-op, stop calling it. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove deprecation Created 5 years, 3 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
« no previous file with comments | « no previous file | example/HelloWorld.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "SkDebuggerGUI.h" 9 #include "SkDebuggerGUI.h"
10 #include "SkForceLinking.h" 10 #include "SkForceLinking.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 if (!input.isEmpty()) { 60 if (!input.isEmpty()) {
61 if (SkStrEndsWith(input.c_str(), ".skp")) { 61 if (SkStrEndsWith(input.c_str(), ".skp")) {
62 w.openFile(input.c_str()); 62 w.openFile(input.c_str());
63 } else { 63 } else {
64 w.setupDirectoryWidget(input.c_str()); 64 w.setupDirectoryWidget(input.c_str());
65 } 65 }
66 } 66 }
67 67
68 w.show(); 68 w.show();
69 int result = a.exec(); 69 int result = a.exec();
70 SkGraphics::Term();
71 return result; 70 return result;
72 } 71 }
OLDNEW
« no previous file with comments | « no previous file | example/HelloWorld.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698