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

Side by Side Diff: chrome/common/render_messages.h

Issue 6997006: iwyu: Include stringprintf.h where appropriate, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 // TODO(erg): This list has been temporarily annotated by erg while doing work 11 // TODO(erg): This list has been temporarily annotated by erg while doing work
12 // on which headers to pull out. 12 // on which headers to pull out.
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/file_path.h" 14 #include "base/file_path.h"
15 #include "base/process.h" 15 #include "base/process.h"
16 #include "base/shared_memory.h" 16 #include "base/shared_memory.h"
17 #include "base/string16.h" 17 #include "base/string16.h"
18 #include "base/stringprintf.h"
18 #include "base/values.h" 19 #include "base/values.h"
19 #include "build/build_config.h" 20 #include "build/build_config.h"
20 #include "chrome/common/common_param_traits.h" 21 #include "chrome/common/common_param_traits.h"
21 #include "chrome/common/instant_types.h" 22 #include "chrome/common/instant_types.h"
22 #include "chrome/common/nacl_types.h" 23 #include "chrome/common/nacl_types.h"
23 #include "chrome/common/search_provider.h" 24 #include "chrome/common/search_provider.h"
24 #include "chrome/common/thumbnail_score.h" 25 #include "chrome/common/thumbnail_score.h"
25 #include "chrome/common/translate_errors.h" 26 #include "chrome/common/translate_errors.h"
26 #include "chrome/common/view_types.h" 27 #include "chrome/common/view_types.h"
27 #include "content/common/common_param_traits.h" 28 #include "content/common/common_param_traits.h"
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 int32 /* page_id */, 469 int32 /* page_id */,
469 bool /* result */) 470 bool /* result */)
470 471
471 // JavaScript related messages ----------------------------------------------- 472 // JavaScript related messages -----------------------------------------------
472 473
473 // Notify the JavaScript engine in the render to change its parameters 474 // Notify the JavaScript engine in the render to change its parameters
474 // while performing stress testing. 475 // while performing stress testing.
475 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, 476 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl,
476 int /* cmd */, 477 int /* cmd */,
477 int /* param */) 478 int /* param */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698