summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dom_ui/textfields_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/dom_ui/textfields_ui.cc')
-rw-r--r--chrome/browser/dom_ui/textfields_ui.cc76
1 files changed, 76 insertions, 0 deletions
diff --git a/chrome/browser/dom_ui/textfields_ui.cc b/chrome/browser/dom_ui/textfields_ui.cc
new file mode 100644
index 0000000..db4fb0c
--- /dev/null
+++ b/chrome/browser/dom_ui/textfields_ui.cc
@@ -0,0 +1,76 @@
+// Copyright (c) 2010 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 "chrome/browser/dom_ui/textfields_ui.h"
+
+#include <algorithm>
+#include <string>
+
+#include "app/resource_bundle.h"
+#include "base/singleton.h"
+#include "base/string_piece.h"
+#include "base/values.h"
+#include "chrome/browser/browser_thread.h"
+#include "chrome/common/jstemplate_builder.h"
+#include "chrome/common/url_constants.h"
+#include "grit/browser_resources.h"
+
+/**
+ * TextfieldsUIHTMLSource implementation.
+ */
+TextfieldsUIHTMLSource::TextfieldsUIHTMLSource()
+ : DataSource(chrome::kChromeUITextfieldsHost, MessageLoop::current()) {
+}
+
+void TextfieldsUIHTMLSource::StartDataRequest(const std::string& path,
+ bool is_off_the_record,
+ int request_id) {
+ const std::string full_html = ResourceBundle::GetSharedInstance()
+ .GetRawDataResource(IDR_TEXTFIELDS_HTML).as_string();
+
+ scoped_refptr<RefCountedBytes> html_bytes(new RefCountedBytes);
+ html_bytes->data.resize(full_html.size());
+ std::copy(full_html.begin(), full_html.end(), html_bytes->data.begin());
+
+ SendResponse(request_id, html_bytes);
+}
+
+std::string TextfieldsUIHTMLSource::GetMimeType(
+ const std::string& /* path */) const {
+ return "text/html";
+}
+
+TextfieldsUIHTMLSource::~TextfieldsUIHTMLSource() {}
+
+/**
+ * TextfieldsDOMHandler implementation.
+ */
+TextfieldsDOMHandler::TextfieldsDOMHandler() : DOMMessageHandler() {}
+
+void TextfieldsDOMHandler::RegisterMessages() {
+ dom_ui_->RegisterMessageCallback("textfieldValue",
+ NewCallback(this, &TextfieldsDOMHandler::HandleTextfieldValue));
+}
+
+void TextfieldsDOMHandler::HandleTextfieldValue(const ListValue* args) {
+ static_cast<TextfieldsUI*>(dom_ui_)->set_text(ExtractStringValue(args));
+}
+
+/**
+ * TextfieldsUI implementation.
+ */
+TextfieldsUI::TextfieldsUI(TabContents* contents) : DOMUI(contents) {
+ TextfieldsDOMHandler* handler = new TextfieldsDOMHandler();
+ AddMessageHandler(handler);
+ handler->Attach(this);
+
+ TextfieldsUIHTMLSource* html_source = new TextfieldsUIHTMLSource();
+
+ // Set up the chrome://textfields/ source.
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
+ NewRunnableMethod(Singleton<ChromeURLDataManager>::get(),
+ &ChromeURLDataManager::AddDataSource,
+ make_scoped_refptr(html_source)));
+}