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

Unified Diff: src/views/unix/skia_unix.cpp

Issue 133113002: Cleanup: Remove unused includes from skia_unix.cpp (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/views/unix/skia_unix.cpp
diff --git a/src/views/unix/skia_unix.cpp b/src/views/unix/skia_unix.cpp
index 7dcbeccae61d4fbb20ba12918df8860228b56f27..03a2915adb31b0bd2ab1e5e722c553bcc6330e97 100644
--- a/src/views/unix/skia_unix.cpp
+++ b/src/views/unix/skia_unix.cpp
@@ -1,37 +1,26 @@
-
/*
* 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 "X11/Xlib.h"
-#include "X11/keysym.h"
#include "SkApplication.h"
#include "SkEvent.h"
#include "SkWindow.h"
-#include "SkTypes.h"
-
-#include <signal.h>
-#include <sys/time.h>
-
-SkOSWindow* gWindow;
int main(int argc, char** argv){
- gWindow = create_sk_window(NULL, argc, argv);
+ SkOSWindow* window = create_sk_window(NULL, argc, argv);
- // drain any events that occurred before gWindow was assigned.
+ // drain any events that occurred before |window| was assigned.
while (SkEvent::ProcessEvent());
// Start normal Skia sequence
application_init();
- gWindow->loop();
+ window->loop();
- delete gWindow;
+ delete window;
application_term();
return 0;
}
-
-// SkEvent handlers
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698