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

Side by Side Diff: courgette/disassembler.cc

Issue 3014015: Remove <iostream> where possible. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix chrome frame compile Created 10 years, 5 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 | « chrome/tools/crash_service/crash_service.cc ('k') | gfx/insets_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "courgette/disassembler.h" 5 #include "courgette/disassembler.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iostream>
9 #include <string> 8 #include <string>
10 #include <vector> 9 #include <vector>
11 10
12 #include "base/basictypes.h" 11 #include "base/basictypes.h"
13 #include "base/logging.h" 12 #include "base/logging.h"
14 13
15 #include "courgette/assembly_program.h" 14 #include "courgette/assembly_program.h"
16 #include "courgette/courgette.h" 15 #include "courgette/courgette.h"
17 #include "courgette/encoded_program.h" 16 #include "courgette/encoded_program.h"
18 #include "courgette/image_info.h" 17 #include "courgette/image_info.h"
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 delete pe_info; 426 delete pe_info;
428 *output = program; 427 *output = program;
429 return C_OK; 428 return C_OK;
430 } 429 }
431 430
432 void DeleteAssemblyProgram(AssemblyProgram* program) { 431 void DeleteAssemblyProgram(AssemblyProgram* program) {
433 delete program; 432 delete program;
434 } 433 }
435 434
436 } // namespace courgette 435 } // namespace courgette
OLDNEW
« no previous file with comments | « chrome/tools/crash_service/crash_service.cc ('k') | gfx/insets_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698