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

Side by Side Diff: courgette/adjustment_method_2.cc

Issue 7016011: iwyu: Include stringprintf.h where appropriate, part 3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win fix. Created 9 years, 7 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 "courgette/adjustment_method.h" 5 #include "courgette/adjustment_method.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/basictypes.h" 15 #include "base/basictypes.h"
16 #include "base/format_macros.h" 16 #include "base/format_macros.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/string_util.h" 18 #include "base/stringprintf.h"
19 #include "base/time.h" 19 #include "base/time.h"
20
21 #include "courgette/assembly_program.h" 20 #include "courgette/assembly_program.h"
22 #include "courgette/courgette.h" 21 #include "courgette/courgette.h"
23 #include "courgette/encoded_program.h" 22 #include "courgette/encoded_program.h"
24 #include "courgette/image_info.h" 23 #include "courgette/image_info.h"
25 24
26 /* 25 /*
27 26
28 Shingle weighting matching. 27 Shingle weighting matching.
29 28
30 We have a sequence S1 of symbols from alphabet A1={A,B,C,...} called the 'model' 29 We have a sequence S1 of symbols from alphabet A1={A,B,C,...} called the 'model'
(...skipping 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after
1292 1291
1293 //////////////////////////////////////////////////////////////////////////////// 1292 ////////////////////////////////////////////////////////////////////////////////
1294 1293
1295 } // namespace adjustment_method_2 1294 } // namespace adjustment_method_2
1296 1295
1297 AdjustmentMethod* AdjustmentMethod::MakeShingleAdjustmentMethod() { 1296 AdjustmentMethod* AdjustmentMethod::MakeShingleAdjustmentMethod() {
1298 return new adjustment_method_2::Adjuster(); 1297 return new adjustment_method_2::Adjuster();
1299 } 1298 }
1300 1299
1301 } // namespace courgette 1300 } // namespace courgette
OLDNEW
« no previous file with comments | « courgette/adjustment_method.cc ('k') | jingle/notifier/listener/push_notifications_send_update_task_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698