blob: db4fb0c07e8ceb70f8fb39aefe9bb15672610327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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)));
}
|