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

Unified Diff: content/common/dwrite_localized_strings_win.cc

Issue 1378353006: Implementation of dwrite font proxy and removal of dwrite font cache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge to head Created 5 years, 2 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
Index: content/common/dwrite_localized_strings_win.cc
diff --git a/content/common/dwrite_localized_strings_win.cc b/content/common/dwrite_localized_strings_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..037b32b95c792c4811ffe0c8ec8faa0382f32e8a
--- /dev/null
+++ b/content/common/dwrite_localized_strings_win.cc
@@ -0,0 +1,76 @@
+// Copyright 2015 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.
+
+#include "content/common/dwrite_localized_strings_win.h"
+
+#include "base/logging.h"
+
+namespace content {
+
+HRESULT DWriteLocalizedStrings::FindLocaleName(const WCHAR* localeName,
+ UINT32* index,
+ BOOL* exists) {
+ for (unsigned int n = 0; n < strings_.size(); n++) {
+ if (_wcsicmp(strings_[n].first.data(), localeName) == 0) {
+ *index = n;
+ *exists = TRUE;
+ return S_OK;
+ }
+ }
+
+ *index = UINT_MAX;
+ *exists = FALSE;
+ return S_OK;
+}
+
+UINT32 DWriteLocalizedStrings::GetCount() {
+ return strings_.size();
+}
+
+HRESULT DWriteLocalizedStrings::GetLocaleName(UINT32 index,
+ WCHAR* localeName,
+ UINT32 size) {
+ if (index >= strings_.size())
+ return E_INVALIDARG;
+ if (size <= strings_[index].first.size())
+ return E_INVALIDARG;
+ wcsncpy(localeName, strings_[index].first.data(), size);
+ return S_OK;
+}
+
+HRESULT DWriteLocalizedStrings::GetLocaleNameLength(UINT32 index,
+ UINT32* length) {
+ if (index >= strings_.size()) {
+ return E_INVALIDARG;
+ }
+ *length = strings_[index].first.size();
+ return S_OK;
+}
+
+HRESULT DWriteLocalizedStrings::GetString(UINT32 index,
+ WCHAR* stringBuffer,
+ UINT32 size) {
+ if (index >= strings_.size())
+ return E_INVALIDARG;
+ if (size <= strings_[index].second.size())
+ return E_INVALIDARG;
+ wcsncpy(stringBuffer, strings_[index].second.data(), size);
+ return S_OK;
+}
+
+HRESULT DWriteLocalizedStrings::GetStringLength(UINT32 index, UINT32* length) {
+ if (index >= strings_.size()) {
+ return E_INVALIDARG;
+ }
+ *length = strings_[index].second.size();
+ return S_OK;
+}
+
+HRESULT DWriteLocalizedStrings::RuntimeClassInitialize(
+ std::vector<std::pair<base::string16, base::string16>>* strings) {
+ strings_.swap(*strings);
+ return S_OK;
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698