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

Unified Diff: content/browser/hyphenation/hyphenation_impl.h

Issue 2113933003: Add mojo interface to load hyphenation dictionaries on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dcheng review Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/hyphenation/OWNERS ('k') | content/browser/hyphenation/hyphenation_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/hyphenation/hyphenation_impl.h
diff --git a/content/browser/hyphenation/hyphenation_impl.h b/content/browser/hyphenation/hyphenation_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..9565d2bc98e29172d24485be264d918d14f6821b
--- /dev/null
+++ b/content/browser/hyphenation/hyphenation_impl.h
@@ -0,0 +1,34 @@
+// Copyright 2016 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.
+
+#ifndef CONTENT_BROWSER_HYPHENATION_HYPHENATION_IMPL_H_
+#define CONTENT_BROWSER_HYPHENATION_HYPHENATION_IMPL_H_
+
+#include "base/macros.h"
+#include "mojo/public/cpp/bindings/interface_request.h"
+#include "mojo/public/cpp/bindings/strong_binding.h"
+#include "third_party/WebKit/public/platform/modules/hyphenation/hyphenation.mojom.h"
+
+namespace hyphenation {
+
+class HyphenationImpl : public blink::mojom::Hyphenation {
+ public:
+ static void Create(blink::mojom::HyphenationRequest);
+
+ // Hyphenation:
+ void OpenDictionary(const mojo::String& locale,
+ const OpenDictionaryCallback& callback) override;
+
+ private:
+ explicit HyphenationImpl(blink::mojom::HyphenationRequest);
+ ~HyphenationImpl() override;
+
+ mojo::StrongBinding<blink::mojom::Hyphenation> binding_;
+
+ DISALLOW_COPY_AND_ASSIGN(HyphenationImpl);
+};
+
+} // namespace hyphenation
+
+#endif // CONTENT_BROWSER_HYPHENATION_HYPHENATION_IMPL_H_
« no previous file with comments | « content/browser/hyphenation/OWNERS ('k') | content/browser/hyphenation/hyphenation_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698