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

Side by Side Diff: content/common/view_messages.h

Issue 11363008: Fix for 128506: Random Chinese/Japanese characters are missing in documents printed via the syst... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 1 month 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <string>
jam 2012/11/09 01:44:14 this is redundant :) it's a very basic include tha
edisonn 2012/11/09 17:48:57 removed it (but lint warned me to "include what yo
9
8 #include "base/process.h" 10 #include "base/process.h"
9 #include "base/shared_memory.h" 11 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
11 #include "content/common/css_colors.h" 13 #include "content/common/css_colors.h"
12 #include "content/common/edit_command.h" 14 #include "content/common/edit_command.h"
13 #include "content/common/navigation_gesture.h" 15 #include "content/common/navigation_gesture.h"
14 #include "content/common/view_message_enums.h" 16 #include "content/common/view_message_enums.h"
15 #include "content/public/common/common_param_traits.h" 17 #include "content/public/common/common_param_traits.h"
16 #include "content/public/common/context_menu_params.h" 18 #include "content/public/common/context_menu_params.h"
17 #include "content/public/common/file_chooser_params.h" 19 #include "content/public/common/file_chooser_params.h"
(...skipping 2454 matching lines...) Expand 10 before | Expand all | Expand 10 after
2472 2474
2473 // Perform a seek. 2475 // Perform a seek.
2474 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek, 2476 IPC_MESSAGE_ROUTED2(ViewHostMsg_MediaPlayerSeek,
2475 int /* player_id */, 2477 int /* player_id */,
2476 base::TimeDelta /* time */) 2478 base::TimeDelta /* time */)
2477 2479
2478 // Start the player for playback. 2480 // Start the player for playback.
2479 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart, 2481 IPC_MESSAGE_ROUTED1(ViewHostMsg_MediaPlayerStart,
2480 int /* player_id */) 2482 int /* player_id */)
2481 #endif 2483 #endif
2484
2485 #if defined(OS_WIN)
2486 // Request that the given font characters be loaded by the browser so it's
2487 // cached by the OS. Please see TODO!?!
jam 2012/11/09 01:44:14 ?
2488 // for details.
2489 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
2490 LOGFONT, /* font data */
2491 std::wstring /* characters */)
2492 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698