summaryrefslogtreecommitdiffstats
path: root/content/common/hyphenator_messages.h
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-02 18:39:51 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-02 18:39:51 +0000
commit1c6c6c3eef1ae5d60966faf4452524085aec0592 (patch)
treeaf951bddbc0ea58a2a1c5c61e03a1493efc24815 /content/common/hyphenator_messages.h
parenta780c7b2a8273c1814ca4257c3e85c0f56d29ed6 (diff)
downloadchromium_src-1c6c6c3eef1ae5d60966faf4452524085aec0592.zip
chromium_src-1c6c6c3eef1ae5d60966faf4452524085aec0592.tar.gz
chromium_src-1c6c6c3eef1ae5d60966faf4452524085aec0592.tar.bz2
Remove hyphenation code from Chromium.
The feature is being removed because it is incomplete and no one is working on it right now. TBR for third_party. BUG=107111 TBR=darin Review URL: https://chromiumcodereview.appspot.com/20860003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215327 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/hyphenator_messages.h')
-rw-r--r--content/common/hyphenator_messages.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/content/common/hyphenator_messages.h b/content/common/hyphenator_messages.h
deleted file mode 100644
index e68985d..0000000
--- a/content/common/hyphenator_messages.h
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// IPC messages for hyphenation.
-// Message definition file, included multiple times, hence no include guard.
-
-#include "ipc/ipc_message_macros.h"
-#include "ipc/ipc_platform_file.h"
-
-#define IPC_MESSAGE_START HyphenatorMsgStart
-
-// Opens the specified hyphenation dictionary. This message is expected to be
-// sent when WebKit calls the canHyphenate function, i.e. when it starts
-// layouting text. At this time, WebKit does not actually need this dictionary
-// to hyphenate words. Therefore, a renderer does not need to wait for a browser
-// to open the specified dictionary.
-IPC_MESSAGE_CONTROL1(HyphenatorHostMsg_OpenDictionary,
- string16 /* locale */)
-
-// Sends the hyphenation dictionary to the renderer. This messages is sent in
-// response to a HyphenatorHostMsg_OpenDictionary message.
-IPC_MESSAGE_CONTROL1(HyphenatorMsg_SetDictionary,
- IPC::PlatformFileForTransit /* dict_file */)