Home | History | Annotate | Download | only in webui

Lines Matching refs:html_source

42   content::WebUIDataSource* html_source =
46 html_source->AddLocalizedString("title", IDS_ABOUT_VERSION_TITLE);
47 html_source->AddLocalizedString("application_label", IDS_PRODUCT_NAME);
49 html_source->AddString("version", version_info.Version());
50 html_source->AddString("version_modifier",
52 html_source->AddLocalizedString("os_name", IDS_ABOUT_VERSION_OS);
53 html_source->AddLocalizedString("platform", IDS_PLATFORM_LABEL);
54 html_source->AddString("os_type", version_info.OSType());
55 html_source->AddString("blink_version", content::GetWebKitVersion());
56 html_source->AddString("js_engine", "V8");
57 html_source->AddString("js_version", v8::V8::GetVersion());
60 html_source->AddString("os_version", AndroidAboutAppInfo::GetOsInfo());
61 html_source->AddLocalizedString("build_id_name",
63 html_source->AddString("build_id", CHROME_BUILD_ID);
65 html_source->AddString("os_version", std::string());
66 html_source->AddString("flash_plugin", "Flash");
69 html_source->AddString("flash_version", std::string());
72 html_source->AddLocalizedString("company", IDS_ABOUT_VERSION_COMPANY_NAME);
75 html_source->AddString(
79 html_source->AddLocalizedString("revision", IDS_ABOUT_VERSION_REVISION);
80 html_source->AddString("cl", version_info.LastChange());
81 html_source->AddLocalizedString("official",
84 html_source->AddLocalizedString("user_agent_name",
86 html_source->AddString("useragent", GetUserAgent());
87 html_source->AddLocalizedString("command_line_name",
91 html_source->AddString("command_line", base::WideToUTF16(
101 html_source->AddString("command_line", command_line);
107 html_source->AddLocalizedString("executable_path_name",
109 html_source->AddString("executable_path", std::string());
111 html_source->AddLocalizedString("profile_path_name",
113 html_source->AddString("profile_path", std::string());
115 html_source->AddLocalizedString("variations_name",
118 html_source->SetUseJsonJSFormatV2();
119 html_source->SetJsonPath("strings.js");
120 html_source->AddResourcePath("version.js", IDR_ABOUT_VERSION_JS);
121 html_source->AddResourcePath("about_version.css", IDR_ABOUT_VERSION_CSS);
122 html_source->SetDefaultResource(IDR_ABOUT_VERSION_HTML);
123 return html_source;