Searched refs:view_type (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/chrome/browser/extensions/
H A Dextension_view_host_factory.cc16 #include "extensions/common/view_type.h"
33 ViewType view_type) {
36 DCHECK(browser || view_type == VIEW_TYPE_EXTENSION_DIALOG);
42 new ExtensionViewHostMac(extension, site_instance, url, view_type);
44 new ExtensionViewHost(extension, site_instance, url, view_type);
56 ViewType view_type) {
64 extension, url, original_profile, browser, view_type);
70 extension, url, profile, browser, view_type);
96 extensions::ViewType view_type) {
99 DCHECK(browser || view_type
29 CreateViewHostForExtension(const Extension* extension, const GURL& url, Profile* profile, Browser* browser, ViewType view_type) argument
52 CreateViewHostForIncognito(const Extension* extension, const GURL& url, Profile* profile, Browser* browser, ViewType view_type) argument
93 CreateViewHost(const GURL& url, Profile* profile, Browser* browser, extensions::ViewType view_type) argument
[all...]
H A Dchrome_content_browser_client_extensions_part.cc483 ViewType view_type = GetViewType(web_contents); local
485 extension_webkit_preferences::SetPreferences(extension, view_type, web_prefs);
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Dcontext_menu_content_type_factory.cc67 const extensions::ViewType view_type = extensions::GetViewType(web_contents); local
69 if (view_type == extensions::VIEW_TYPE_APP_WINDOW ||
70 view_type == extensions::VIEW_TYPE_LAUNCHER_PAGE)
73 if (view_type == extensions::VIEW_TYPE_EXTENSION_POPUP)
76 if (view_type == extensions::VIEW_TYPE_PANEL)
/external/chromium_org/chrome/browser/task_manager/
H A Dextension_information.cc107 extensions::ViewType view_type = extensions::GetViewType(web_contents); local
108 return view_type == extensions::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE;
159 extensions::ViewType view_type = extensions::GetViewType(web_contents);
164 return (view_type != extensions::VIEW_TYPE_INVALID &&
165 view_type != extensions::VIEW_TYPE_TAB_CONTENTS &&
166 view_type != extensions::VIEW_TYPE_BACKGROUND_CONTENTS &&
167 view_type != extensions::VIEW_TYPE_PANEL);
H A Dbackground_information.cc115 extensions::ViewType view_type = extensions::GetViewType(web_contents); local
116 return view_type == extensions::VIEW_TYPE_BACKGROUND_CONTENTS;
/external/chromium_org/extensions/renderer/
H A Druntime_custom_bindings.cc135 // |view_type| == VIEW_TYPE_INVALID means getting any type of
137 ViewType view_type = VIEW_TYPE_INVALID; local
139 view_type = VIEW_TYPE_EXTENSION_BACKGROUND_PAGE;
141 view_type = VIEW_TYPE_EXTENSION_INFOBAR;
143 view_type = VIEW_TYPE_TAB_CONTENTS;
145 view_type = VIEW_TYPE_EXTENSION_POPUP;
147 view_type = VIEW_TYPE_EXTENSION_DIALOG;
149 view_type = VIEW_TYPE_APP_WINDOW;
151 view_type = VIEW_TYPE_LAUNCHER_PAGE;
153 view_type
[all...]
H A Dextension_helper.h13 #include "extensions/common/view_type.h"
39 ViewType view_type);
50 ViewType view_type() const { return view_type_; } function in class:extensions::ExtensionHelper
82 void OnNotifyRendererViewType(ViewType view_type);
H A Dextension_helper.cc41 ViewType view_type)
44 view_type_(view_type) {
52 if (!ViewTypeMatches(helper->view_type(), view_type_))
99 ViewType view_type) {
100 ViewAccumulator accumulator(extension_id, browser_window_id, view_type);
39 ViewAccumulator(const std::string& extension_id, int browser_window_id, ViewType view_type) argument
96 GetExtensionViews( const std::string& extension_id, int browser_window_id, ViewType view_type) argument
H A Dlazy_background_page_native_handler.cc59 helper->view_type() == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE);
H A Devent_bindings.cc62 helper->view_type() == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE);
/external/chromium_org/extensions/browser/api/guest_view/
H A Dguest_view_internal_api.cc23 std::string view_type; local
24 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &view_type));
49 guest_view_manager->CreateGuest(view_type,
/external/chromium_org/ash/system/chromeos/power/
H A Dpower_status_view.h27 PowerStatusView(ViewType view_type, bool default_view_right_align);
H A Dpower_status_view.cc29 PowerStatusView::PowerStatusView(ViewType view_type, argument
37 view_type_(view_type) {
39 if (view_type == VIEW_DEFAULT) {
/external/chromium_org/chrome/browser/speech/
H A Dchrome_speech_recognition_manager_delegate.cc430 extensions::ViewType view_type = extensions::GetViewType(web_contents); local
432 if (view_type == extensions::VIEW_TYPE_TAB_CONTENTS ||
433 view_type == extensions::VIEW_TYPE_APP_WINDOW ||
434 view_type == extensions::VIEW_TYPE_LAUNCHER_PAGE ||
435 view_type == extensions::VIEW_TYPE_VIRTUAL_KEYBOARD ||
436 view_type == extensions::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
/external/chromium_org/extensions/browser/guest_view/
H A Dguest_view_manager.h66 void CreateGuest(const std::string& view_type,
73 const std::string& view_type,
H A Dguest_view_base.h59 static void RegisterGuestViewType(const std::string& view_type,
64 const std::string& view_type);
179 bool IsViewType(const char* const view_type) const {
180 return !strcmp(GetViewType(), view_type);
H A Dguest_view_manager.cc115 void GuestViewManager::CreateGuest(const std::string& view_type, argument
122 GuestViewBase::Create(context_, guest_instance_id, view_type);
132 const std::string& view_type,
138 GuestViewBase::Create(context_, guest_instance_id, view_type);
131 CreateGuestWithWebContentsParams( const std::string& view_type, const std::string& embedder_extension_id, int embedder_render_process_id, const content::WebContents::CreateParams& create_params) argument
H A Dguest_view_base.cc217 const std::string& view_type,
220 guest_view_registry.Get().find(view_type);
222 guest_view_registry.Get()[view_type] = callback;
229 const std::string& view_type) {
234 guest_view_registry.Get().find(view_type);
216 RegisterGuestViewType( const std::string& view_type, const GuestCreationCallback& callback) argument
226 Create( content::BrowserContext* browser_context, int guest_instance_id, const std::string& view_type) argument
/external/chromium_org/ash/system/chromeos/network/
H A Dtray_sms.cc90 ViewType view_type,
107 if (view_type == VIEW_DETAILED)
89 SmsMessageView(TraySms* owner, ViewType view_type, size_t index, const std::string& number, const std::string& message) argument
/external/chromium_org/extensions/browser/
H A Dextension_host.cc440 ViewType view_type = extensions::GetViewType(web_contents); local
441 return view_type == extensions::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE;
H A Dprocess_manager.cc380 ViewType view_type = view->second; local
384 if (view_type != VIEW_TYPE_INVALID &&
385 view_type != VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
467 ViewType view_type = GetViewType(web_contents); local
468 if (view_type != VIEW_TYPE_INVALID &&
469 view_type != VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
/external/chromium_org/third_party/lcov/bin/
H A Dgenhtml890 $view_type, $sort_type) = @_;
899 write_header(*HTML_HANDLE, $view_type, $trunc_dir, $rel_dir,
903 $testfnchash, $testbrhash, $view_type, $sort_type);

Completed in 542 milliseconds