Remove unused includes from skhello tool.
authortfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 25 Sep 2012 20:16:46 +0000 (20:16 +0000)
committertfarina@chromium.org <tfarina@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 25 Sep 2012 20:16:46 +0000 (20:16 +0000)
R=epoger@google.com

Review URL: https://codereview.appspot.com/6546063

git-svn-id: http://skia.googlecode.com/svn/trunk@5676 2bbb7eff-a529-9590-31e7-b0007b416f81

tools/skhello.cpp

index 46569d5..82abf80 100644 (file)
@@ -1,23 +1,20 @@
-
 /*
  * Copyright 2011 Google Inc.
  *
  * Use of this source code is governed by a BSD-style license that can be
  * found in the LICENSE file.
  */
+
 #include "SkCanvas.h"
 #include "SkGraphics.h"
-//#include "SkImageDecoder.h"
 #include "SkImageEncoder.h"
-//#include "SkStream.h"
 #include "SkString.h"
-#include "SkTemplates.h"
 
 static void show_help() {
     SkDebugf("usage: skhello [-o out-dir] [-t 'hello']\n  default output: skhello.png\n");
 }
 
-int main (int argc, char * const argv[]) {
+int main(int argc, char* const argv[]) {
     SkAutoGraphics ag;
     SkString path("skhello.png");
     SkString text("Hello");
@@ -71,4 +68,3 @@ int main (int argc, char * const argv[]) {
     }
     return !success;
 }
-