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

Side by Side Diff: media/tools/player_x11/player_x11.cc

Issue 7811002: Remove use of <iostream> where unnecessary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <iostream> 5 #include <ostream>
6 #include <signal.h> 6 #include <signal.h>
7 #include <X11/keysym.h> 7 #include <X11/keysym.h>
8 #include <X11/Xlib.h> 8 #include <X11/Xlib.h>
9 9
10 #include "base/at_exit.h" 10 #include "base/at_exit.h"
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/command_line.h" 12 #include "base/command_line.h"
13 #include "base/file_path.h" 13 #include "base/file_path.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/threading/platform_thread.h" 15 #include "base/threading/platform_thread.h"
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 } 260 }
261 261
262 // Cleanup tasks. 262 // Cleanup tasks.
263 message_loop_factory.reset(); 263 message_loop_factory.reset();
264 264
265 thread->Stop(); 265 thread->Stop();
266 XDestroyWindow(g_display, g_window); 266 XDestroyWindow(g_display, g_window);
267 XCloseDisplay(g_display); 267 XCloseDisplay(g_display);
268 return 0; 268 return 0;
269 } 269 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698