HomeSort by relevance Sort by last modified time
    Searched refs:WebUI (Results 151 - 175 of 354) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/chrome/browser/ui/webui/chromeos/login/
login_ui.cc 5 #include "chrome/browser/ui/webui/chromeos/login/login_ui.h"
17 #include "chrome/browser/ui/webui/chrome_url_data_manager.h"
18 #include "chrome/browser/ui/webui/chromeos/login/login_ui_helpers.h"
66 WebUIMessageHandler* LoginUIHandler::Attach(WebUI* web_ui) {
112 : WebUI(contents) {
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_browsertest.js 6 * TestFixture for autofill options WebUI testing.
content_options_browsertest.js 6 * TestFixture for content options WebUI testing.
font_settings_browsertest.js 6 * TestFixture for font settings WebUI testing.
language_options_browsertest.js 6 * TestFixture for languages options WebUI testing.
password_manager_browsertest.js 6 * TestFixture for password manager WebUI testing.
profile_settings_reset_browsertest.js 6 * TestFixture for profile settings reset WebUI testing.
browser_options_browsertest.js 6 * TestFixture for browser options WebUI testing.
content_settings_exception_area_browsertest.js 6 * TestFixture for content settings exception area WebUI testing.
cookies_view_browsertest.js 6 * TestFixture for cookies view WebUI testing.
search_engine_manager_browsertest.js 6 * TestFixture for search engine manager WebUI testing.
  /external/chromium_org/content/public/browser/
web_ui.h 30 // A WebUI sets up the datasources and message handlers for a given HTML-based
32 class CONTENT_EXPORT WebUI {
34 // An opaque identifier used to identify a WebUI. This can only be compared to
35 // kNoWebUI or other WebUI types. See GetWebUIType.
38 // A special WebUI type that signifies that a given page would not use the
48 virtual ~WebUI() {}
56 // Whenever possible, WebUI should push resources with this scale factor to
76 // Sets the path for the iframe if this WebUI is embedded in a page.
79 // Takes ownership of |handler|, which will be destroyed when the WebUI is.
90 // then later wants to undo that, or to route it to a different WebUI object
    [all...]
web_contents.h 201 // Create a WebUI page for the given url. In most cases, this doesn't need to
202 // be called by embedders since content will create its own WebUI objects as
203 // necessary. However if the embedder wants to create its own WebUI object and
205 virtual WebUI* CreateWebUI(const GURL& url) = 0;
207 // Returns the committed WebUI if one exists, otherwise the pending one.
208 virtual WebUI* GetWebUI() const = 0;
209 virtual WebUI* GetCommittedWebUI() const = 0;
  /external/chromium_org/ui/web_dialogs/
web_dialog_ui.cc 40 WebDialogUI::WebDialogUI(content::WebUI* web_ui)
49 // it's scary if this WebUI is changed out and replaced with something else,
116 ExternalWebDialogUI::ExternalWebDialogUI(content::WebUI* web_ui)
  /external/chromium/chrome/browser/ui/webui/chromeos/
system_info_ui.cc 5 #include "chrome/browser/ui/webui/chromeos/system_info_ui.h"
20 #include "chrome/browser/ui/webui/chrome_url_data_manager.h"
71 virtual WebUIMessageHandler* Attach(WebUI* web_ui);
163 WebUIMessageHandler* SystemInfoHandler::Attach(WebUI* web_ui) {
178 SystemInfoUI::SystemInfoUI(TabContents* contents) : WebUI(contents) {
  /external/chromium/chrome/browser/ui/webui/
crashes_ui.cc 5 #include "chrome/browser/ui/webui/crashes_ui.h"
15 #include "chrome/browser/ui/webui/chrome_url_data_manager.h"
110 virtual WebUIMessageHandler* Attach(WebUI* web_ui);
142 WebUIMessageHandler* CrashesDOMHandler::Attach(WebUI* web_ui) {
211 CrashesUI::CrashesUI(TabContents* contents) : WebUI(contents) {
  /external/chromium_org/chrome/browser/chromeos/login/
screen_locker_tester.cc 113 // Returns the WebUI object from the screen locker.
114 content::WebUI* webui() const;
174 return webui()->GetWebContents()->GetRenderViewHost();
183 content::WebUI* WebUIScreenLockerTester::webui() const { function in class:chromeos::test::WebUIScreenLockerTester
185 content::WebUI* webui = webui_screen_locker()->GetWebUI(); local
186 DCHECK(webui);
187 return webui;
    [all...]
webui_login_view.h 26 class WebUI;
37 // View used to render a WebUI supporting Widget. This widget is used for the
38 // WebUI based start up and lock screens. It contains a WebView.
51 // Initializes the webui login view.
71 // Called when WebUI window is created.
84 // Returns current WebUI.
85 content::WebUI* GetWebUI();
93 // Called when WebUI is being shown after being initilized hidden.
121 // WebView for rendering a webpage as a webui login.
160 // Maps installed accelerators to OOBE webui accelerator identifiers
    [all...]
webui_screen_locker.h 27 class WebUI;
44 // This version of ScreenLockerDelegate displays a WebUI lock screen based on
68 virtual content::WebUI* GetAssociatedWebUI() OVERRIDE;
136 // Tracks when the WebUI finishes loading.
  /external/chromium_org/chrome/browser/ui/webui/
chrome_web_ui_controller_factory.cc 5 #include "chrome/browser/ui/webui/chrome_web_ui_controller_factory.h"
18 #include "chrome/browser/ui/webui/about_ui.h"
19 #include "chrome/browser/ui/webui/app_launcher_page_ui.h"
20 #include "chrome/browser/ui/webui/bookmarks_ui.h"
21 #include "chrome/browser/ui/webui/constrained_web_dialog_ui.h"
22 #include "chrome/browser/ui/webui/crashes_ui.h"
23 #include "chrome/browser/ui/webui/devtools_ui.h"
24 #include "chrome/browser/ui/webui/downloads_ui.h"
25 #include "chrome/browser/ui/webui/extensions/extension_info_ui.h"
26 #include "chrome/browser/ui/webui/extensions/extensions_ui.h
    [all...]
  /external/chromium_org/chrome/test/base/
web_ui_browsertest.h 23 class WebUI;
38 // The runner of WebUI javascript based tests.
39 // See chrome/test/data/webui/test_api.js for the javascript side test API's.
42 // chrome/test/data/webui/sample_downloads.js.
119 // URL to dummy WebUI page for testing framework.
132 // Set a WebUI instance to run tests on.
133 void SetWebUIInstance(content::WebUI* web_ui);
135 // Returns a mock WebUI object under test (if any).
139 // webui tests.
175 // Location of test data (currently test/data/webui)
    [all...]
  /external/chromium/chrome/browser/printing/
print_dialog_cloud_internal.h 15 #include "chrome/browser/ui/webui/html_dialog_ui.h"
16 #include "content/browser/webui/web_ui.h"
29 explicit CloudPrintDataSenderHelper(WebUI* web_ui) : web_ui_(web_ui) {}
32 // Virtualize the overrides of these three functions from WebUI to
42 WebUI* web_ui_;
61 // that the WebUI pointer lifetime will outlast us, so we should be
66 // Cancels any ramining part of the task by clearing out the WebUI
  /external/chromium/chrome/browser/extensions/
extension_web_ui.h 16 #include "content/browser/webui/web_ui.h"
26 // This class implements WebUI for extensions and allows extensions to put UI in
31 : public WebUI,
44 // WebUI
103 // The URL this WebUI was created for.
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_message_handler.cc 12 WebUIMessageHandler* CloudPrintSetupMessageHandler::Attach(WebUI* web_ui) {
13 // Pass the WebUI object to the setup flow.
  /external/chromium/chrome/browser/tab_contents/
render_view_host_delegate_helper.h 12 #include "content/browser/webui/web_ui.h"
44 WebUI::TypeID webui_type,

Completed in 780 milliseconds

1 2 3 4 5 67 8 91011>>