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

Side by Side Diff: src/views/mac/skia_mac.mm

Issue 663093004: Clean up some warnings about unused code. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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 | « src/images/SkImageDecoder_libjpeg.cpp ('k') | no next file » | 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 2011 Google Inc. 3 * Copyright 2011 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 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 #include "SkApplication.h" 10 #include "SkApplication.h"
11 11
12 int main(int argc, char *argv[]) { 12 int main(int argc, char *argv[]) {
13 signal(SIGPIPE, SIG_IGN); 13 signal(SIGPIPE, SIG_IGN);
14 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; 14 /*NSAutoreleasePool* pool = */ [[NSAutoreleasePool alloc] init];
15 application_init(); 15 application_init();
16 int retVal = NSApplicationMain(argc, (const char **)argv); 16 int retVal = NSApplicationMain(argc, (const char **)argv);
17 17
18 #if 0 18 #if 0
19 // we don't expect NSApplicationMain to return. See our applicationShouldTer minate handler. 19 // we don't expect NSApplicationMain to return. See our applicationShouldTer minate handler.
20 application_term(); 20 application_term();
21 [pool release]; 21 [pool release];
22 #endif 22 #endif
23 return retVal; 23 return retVal;
24 } 24 }
OLDNEW
« no previous file with comments | « src/images/SkImageDecoder_libjpeg.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698