// 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 #include #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 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(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(ChromeURLDataManager::GetInstance(), &ChromeURLDataManager::AddDataSource, make_scoped_refptr(html_source))); }