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

Side by Side Diff: webkit/mocks/mock_webhyphenator.h

Issue 20860003: Remove hyphenation code from Chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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
« no previous file with comments | « third_party/hyphen/tests/unicode.word ('k') | webkit/mocks/mock_webhyphenator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 #ifndef WEBKIT_MOCKS_MOCK_WEBHYPHENATOR_H_
6 #define WEBKIT_MOCKS_MOCK_WEBHYPHENATOR_H_
7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/platform_file.h"
11 #include "third_party/WebKit/public/platform/WebHyphenator.h"
12
13 typedef struct _HyphenDict HyphenDict;
14
15 namespace webkit_glue {
16
17 // Implements a simple WebHyphenator that only supports en-US. It is used for
18 // layout tests that expect that hyphenator to be available synchronously.
19 // Therefore, this class supports synchronous loading of the dictionary as well.
20 class MockWebHyphenator : public WebKit::WebHyphenator {
21 public:
22 MockWebHyphenator();
23 virtual ~MockWebHyphenator();
24
25 // Loads the hyphenation dictionary. |dict_file| should be an open fd to
26 // third_party/hyphen/hyph_en_US.dic.
27 void LoadDictionary(base::PlatformFile dict_file);
28
29 // WebHyphenator implementation.
30 virtual bool canHyphenate(const WebKit::WebString& locale);
31 virtual size_t computeLastHyphenLocation(
32 const WebKit::WebString& word,
33 size_t before_index,
34 const WebKit::WebString& locale);
35
36 private:
37 HyphenDict* hyphen_dictionary_;
38
39 DISALLOW_COPY_AND_ASSIGN(MockWebHyphenator);
40 };
41
42 } // namespace webkit_glue
43
44 #endif // WEBKIT_MOCKS_MOCK_WEBHYPHENATOR_H_
OLDNEW
« no previous file with comments | « third_party/hyphen/tests/unicode.word ('k') | webkit/mocks/mock_webhyphenator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698