HomeSort by relevance Sort by last modified time
    Searched refs:view_type (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/chrome/browser/extensions/
extension_view_host_factory.cc 16 #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 == VIEW_TYPE_EXTENSION_DIALOG)
    [all...]
chrome_content_browser_client_extensions_part.cc 483 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/
context_menu_content_type_factory.cc 67 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/
extension_information.cc 107 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);
background_information.cc 115 extensions::ViewType view_type = extensions::GetViewType(web_contents); local
116 return view_type == extensions::VIEW_TYPE_BACKGROUND_CONTENTS;
  /external/chromium_org/extensions/renderer/
runtime_custom_bindings.cc 135 // |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 = VIEW_TYPE_PANEL
    [all...]
extension_helper.h 13 #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);
extension_helper.cc 41 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);
lazy_background_page_native_handler.cc 59 helper->view_type() == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE);
event_bindings.cc 62 helper->view_type() == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE);
  /external/chromium_org/extensions/browser/api/guest_view/
guest_view_internal_api.cc 23 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/
power_status_view.h 27 PowerStatusView(ViewType view_type, bool default_view_right_align);
power_status_view.cc 29 PowerStatusView::PowerStatusView(ViewType view_type,
37 view_type_(view_type) {
39 if (view_type == VIEW_DEFAULT) {
  /external/chromium_org/chrome/browser/speech/
chrome_speech_recognition_manager_delegate.cc 430 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/
guest_view_manager.h 66 void CreateGuest(const std::string& view_type,
73 const std::string& view_type,
guest_view_base.h 59 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);
guest_view_manager.cc 115 void GuestViewManager::CreateGuest(const std::string& view_type,
122 GuestViewBase::Create(context_, guest_instance_id, view_type);
132 const std::string& view_type,
138 GuestViewBase::Create(context_, guest_instance_id, view_type);
guest_view_base.cc 217 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);
  /external/chromium_org/ash/system/chromeos/network/
tray_sms.cc 90 ViewType view_type,
107 if (view_type == VIEW_DETAILED)
  /external/chromium_org/extensions/browser/
extension_host.cc 440 ViewType view_type = extensions::GetViewType(web_contents); local
441 return view_type == extensions::VIEW_TYPE_EXTENSION_BACKGROUND_PAGE;
process_manager.cc 380 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) {
    [all...]
  /external/chromium_org/third_party/lcov/bin/
genhtml 890 $view_type, $sort_type) = @_;
899 write_header(*HTML_HANDLE, $view_type, $trunc_dir, $rel_dir,
903 $testfnchash, $testbrhash, $view_type, $sort_type);
    [all...]

Completed in 1909 milliseconds