blob: ea25bc3950bd71aaee81b4a1212fb1f8b63db2d1 (
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
|
// Copyright (c) 2011 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/ui/webui/textfields_ui.h"
#include <algorithm>
#include <string>
#include "base/memory/singleton.h"
#include "base/string_piece.h"
#include "base/utf_string_conversions.h"
#include "base/values.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/jstemplate_builder.h"
#include "chrome/common/url_constants.h"
#include "content/browser/browser_thread.h"
#include "content/browser/tab_contents/tab_contents.h"
#include "grit/browser_resources.h"
#include "ui/base/resource/resource_bundle.h"
/**
* TextfieldsUIHTMLSource implementation.
*/
TextfieldsUIHTMLSource::TextfieldsUIHTMLSource()
: DataSource(chrome::kChromeUITextfieldsHost, MessageLoop::current()) {
}
void TextfieldsUIHTMLSource::StartDataRequest(const std::string& path,
bool is_incognito,
int request_id) {
SendResponse(request_id, ResourceBundle::GetSharedInstance()
.LoadDataResourceBytes(IDR_TEXTFIELDS_HTML));
}
std::string TextfieldsUIHTMLSource::GetMimeType(
const std::string& /* path */) const {
return "text/html";
}
TextfieldsUIHTMLSource::~TextfieldsUIHTMLSource() {}
/**
* TextfieldsDOMHandler implementation.
*/
TextfieldsDOMHandler::TextfieldsDOMHandler() : WebUIMessageHandler() {}
void TextfieldsDOMHandler::RegisterMessages() {
web_ui_->RegisterMessageCallback("textfieldValue",
NewCallback(this, &TextfieldsDOMHandler::HandleTextfieldValue));
}
void TextfieldsDOMHandler::HandleTextfieldValue(const ListValue* args) {
static_cast<TextfieldsUI*>(web_ui_)->set_text(
UTF16ToWideHack(ExtractStringValue(args)));
}
/**
* TextfieldsUI implementation.
*/
TextfieldsUI::TextfieldsUI(TabContents* contents) : ChromeWebUI(contents) {
TextfieldsDOMHandler* handler = new TextfieldsDOMHandler();
AddMessageHandler(handler);
handler->Attach(this);
TextfieldsUIHTMLSource* html_source = new TextfieldsUIHTMLSource();
// Set up the chrome://textfields/ source.
Profile* profile = Profile::FromBrowserContext(contents->browser_context());
profile->GetChromeURLDataManager()->AddDataSource(html_source);
}
|