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

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 "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 2388 matching lines...) Expand 10 before | Expand all | Expand 10 after
2399 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, 2399 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent,
2400 GURL /* content_url */) 2400 GURL /* content_url */)
2401 #endif 2401 #endif
2402 2402
2403 // Notifies that multiple touch targets may have been pressed, and to show 2403 // Notifies that multiple touch targets may have been pressed, and to show
2404 // the disambiguation popup. 2404 // the disambiguation popup.
2405 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, 2405 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup,
2406 gfx::Rect, /* Border of touched targets */ 2406 gfx::Rect, /* Border of touched targets */
2407 gfx::Size, /* Size of zoomed image */ 2407 gfx::Size, /* Size of zoomed image */
2408 TransportDIB::Id /* DIB of zoomed image */) 2408 TransportDIB::Id /* DIB of zoomed image */)
2409
2410 #if defined(OS_WIN)
2411 // Request that the given font characters be loaded by the browser so it's
2412 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
2413 // for details.
2414 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
2415 LOGFONT /* font_data */,
2416 std::wstring /* characters */)
2417 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698