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

Unified Diff: content/browser/webui/i18n_source_stream.cc

Issue 2544683002: [MD settings] i18n source stream filtering (Closed)
Patch Set: removed export Created 4 years 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/browser/webui/i18n_source_stream.cc
diff --git a/content/browser/webui/i18n_source_stream.cc b/content/browser/webui/i18n_source_stream.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6632a686a24f0d8a5d02adfb18cbb15f82d34e51
--- /dev/null
+++ b/content/browser/webui/i18n_source_stream.cc
@@ -0,0 +1,64 @@
+// 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.
+
+#include "content/browser/webui/i18n_source_stream.h"
+
+#include <algorithm>
+#include <utility>
+
+namespace content {
+
+I18nSourceStream::~I18nSourceStream() {}
+
+std::unique_ptr<I18nSourceStream> I18nSourceStream::Create(
+ std::unique_ptr<SourceStream> upstream,
+ SourceStream::SourceType type,
+ const ui::TemplateReplacements* replacements) {
+ DCHECK(replacements);
Dan Beam 2016/12/01 23:32:22 #include "base/logging.h" for DCHECK
dschuyler 2016/12/02 20:14:00 Done.
+ std::unique_ptr<I18nSourceStream> source(
+ new I18nSourceStream(std::move(upstream), type, replacements));
+ return source;
+}
+
+I18nSourceStream::I18nSourceStream(std::unique_ptr<SourceStream> upstream,
+ SourceStream::SourceType type,
+ const ui::TemplateReplacements* replacements)
+ : FilterSourceStream(type, std::move(upstream)),
+ replacements_(replacements) {}
+
+std::string I18nSourceStream::GetTypeAsString() const {
+ return "i18n";
+}
+
+int I18nSourceStream::FilterData(net::IOBuffer* output_buffer,
+ int output_buffer_size,
+ net::IOBuffer* input_buffer,
Dan Beam 2016/12/01 23:32:22 you might need #include "net/base/io_buffer.h" whe
dschuyler 2016/12/02 20:14:00 Done.
+ int input_buffer_size,
+ int* consumed_bytes,
+ bool upstream_end_reached) {
+ *consumed_bytes = 0;
+ int bytes_out = 0;
+ // TODO(dschuyler): Perform replacements without accumulation.
+ if (!upstream_end_reached) {
+ // Accumulate.
+ input_.append(input_buffer->data(), input_buffer_size);
+ *consumed_bytes = input_buffer_size;
+ } else if (!input_.empty() && output_.empty()) {
+ // Process.
+ output_ = ui::ReplaceTemplateExpressions(base::StringPiece(input_),
+ *replacements_);
+ input_.clear();
+ }
+
+ if (!output_.empty()) {
+ // Drain.
+ bytes_out = std::min(static_cast<int>(output_.size()), output_buffer_size);
+ output_.copy(output_buffer->data(), bytes_out);
+ output_.erase(0, bytes_out);
+ }
+
+ return bytes_out;
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698