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

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

Issue 10854245: In-te-grate hy-phen-ator to con-tent. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 3 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // IPC messages for hyphenation.
6 // Message definition file, included multiple times, hence no include guard.
7
8 #include "ipc/ipc_message_macros.h"
9 #include "ipc/ipc_platform_file.h"
10
11 #define IPC_MESSAGE_START HyphenatorMsgStart
12
13 // Opens the specified hyphnation dictionary. This message is expected to be
tony 2012/08/27 18:17:39 Nit: typo hyphnation -> hyphenation
Hironori Bono 2012/08/28 06:54:37 Done. Thanks for pointing out this typo.
14 // sent when WebKit calls the canHyphenate function, i.e. when it starts
15 // layouting text. At this time, WebKit does not actually need this dictionary
16 // to hyphenate words. Therefore, a renderer does not need to wait for a browser
17 // to open the specified dictionary.
18 IPC_MESSAGE_CONTROL1(HyphenatorHostMsg_OpenDictionary,
19 string16 /* locale */)
20
21 // Sends the hyphenation dictionary to the renderer. This messages is sent in
22 // response to a HyphenatorHostMsg_OpenDictionary message.
23 IPC_MESSAGE_CONTROL1(HyphenatorMsg_SetDictionary,
24 IPC::PlatformFileForTransit /* dict_file */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698