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

Unified Diff: src/utils/debugger/SkDebugCanvas.cpp

Issue 17553006: SkDebugCanvas: remove unused <iostream> include. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 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/utils/debugger/SkDebugCanvas.cpp
diff --git a/src/utils/debugger/SkDebugCanvas.cpp b/src/utils/debugger/SkDebugCanvas.cpp
index f87a06aa949d9950719b7e609d90ac85c29d23fb..c6fcb07b8c46ba5106d14ec38588f030fd127dca 100644
--- a/src/utils/debugger/SkDebugCanvas.cpp
+++ b/src/utils/debugger/SkDebugCanvas.cpp
@@ -14,17 +14,6 @@
#include "SkDevice.h"
#include "SkXfermode.h"
-#ifdef SK_BUILD_FOR_WIN
- // iostream includes xlocale which generates warning 4530 because we're compiling without
- // exceptions
- #pragma warning(push)
- #pragma warning(disable : 4530)
-#endif
-#include <iostream>
-#ifdef SK_BUILD_FOR_WIN
- #pragma warning(pop)
-#endif
-
static SkBitmap make_noconfig_bm(int width, int height) {
SkBitmap bm;
bm.setConfig(SkBitmap::kNo_Config, width, height);
« 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