HomeSort by relevance Sort by last modified time
    Searched refs:TabContents (Results 226 - 250 of 585) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/chromeos/login/
web_page_view.h 40 class WizardWebPageViewTabContents : public TabContents {
80 virtual TabContents* CreateTabContents(Profile* profile,
  /external/chromium/chrome/browser/debugger/
debugger_remote_service.h 21 class TabContents;
97 TabContents* ToTabContents(int32 tab_uid);
  /external/chromium/chrome/browser/extensions/
extension_function_dispatcher.h 22 class TabContents;
43 // Asks the delegate for any relevant TabContents associated with this
44 // context. For example, the TabContents in which an infobar or
47 virtual TabContents* associated_tab_contents() const = 0;
extension_install_ui.h 22 class TabContents;
100 TabContents* tab_contents,
isolated_app_apitest.cc 23 bool WARN_UNUSED_RESULT HasCookie(TabContents* contents, std::string cookie) {
31 const Extension* GetInstalledApp(TabContents* contents) {
71 TabContents* tab1 = browser()->GetTabContentsAt(1);
72 TabContents* tab2 = browser()->GetTabContentsAt(2);
73 TabContents* tab3 = browser()->GetTabContentsAt(3);
extension_install_ui_browsertest.cc 24 TabContents* tab_contents = browser()->GetSelectedTabContents();
96 TabContents* tab_contents = browser()->GetSelectedTabContents();
118 TabContents* tab_contents = browser()->GetSelectedTabContents();
  /external/chromium/chrome/browser/instant/
instant_loader.cc 67 TabContents* tab_contents,
76 Source<TabContents>(tab_contents_));
93 // The TabContents we're listening for changes on.
94 TabContents* tab_contents_;
175 virtual void OpenURLFromTab(TabContents* source,
179 virtual void NavigationStateChanged(const TabContents* source,
182 virtual void AddNewContents(TabContents* source,
183 TabContents* new_contents,
187 virtual void ActivateContents(TabContents* contents) OVERRIDE;
188 virtual void DeactivateContents(TabContents* contents) OVERRIDE
    [all...]
  /external/chromium/chrome/browser/
pdf_unsupported_feature.cc 49 TabContents* tab_contents)
120 TabContents* tab_contents_;
126 void OpenReaderUpdateURL(TabContents* tab) {
132 void OpenUsingReader(TabContents* tab,
165 TabContents* tab,
237 TabContents* tab_contents,
356 TabContents* tab_contents_;
366 void PDFHasUnsupportedFeature(TabContents* tab) {
content_setting_bubble_model.cc 28 ContentSettingTitleAndLinkModel(TabContents* tab_contents,
131 ContentSettingTitleLinkAndCustomModel(TabContents* tab_contents,
165 ContentSettingSingleRadioGroup(TabContents* tab_contents,
314 ContentSettingCookiesBubbleModel(TabContents* tab_contents,
344 ContentSettingPluginBubbleModel(TabContents* tab_contents,
368 ContentSettingPopupBubbleModel(TabContents* tab_contents,
382 std::vector<TabContents*> blocked_contents;
385 for (std::vector<TabContents*>::const_iterator
411 ContentSettingDomainListBubbleModel(TabContents* tab_contents,
480 TabContents* tab_contents
    [all...]
  /external/chromium/chrome/browser/ui/app_modal_dialogs/
js_modal_dialog.h 20 class TabContents;
39 // Returns the TabContents or ExtensionHost associated with this message
43 virtual TabContents* AsTabContents() = 0;
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
page_action_decoration.h 17 class TabContents;
41 // to be visible or hidden. |contents| is the TabContents that is
43 void UpdateVisibility(TabContents* contents, const GURL& url);
  /external/chromium/chrome/browser/ui/gtk/
tab_contents_drag_source.h 23 class TabContents;
27 // TabContentsDragSource takes care of managing the drag from a TabContents
34 TabContents* tab_contents() const;
hung_renderer_dialog_gtk.cc 33 void ShowForTabContents(TabContents* hung_contents);
34 void EndForTabContents(TabContents* hung_contents);
51 TabContents* contents_;
144 void HungRendererDialogGtk::ShowForTabContents(TabContents* hung_contents) {
173 void HungRendererDialogGtk::EndForTabContents(TabContents* contents) {
178 // Since we're closing, we no longer need this TabContents.
215 void ShowHungRendererDialog(TabContents* contents) {
223 void HideHungRendererDialog(TabContents* contents) {
tab_contents_container_gtk.cc 68 Source<TabContents>(tab_->tab_contents()));
81 Source<TabContents>(tab_->tab_contents()));
85 TabContents* TabContentsContainerGtk::GetVisibleTabContents() {
101 Source<TabContents>(preview_->tab_contents()));
115 Source<TabContents>(preview_->tab_contents()));
165 // It is possible to detach an unrealized, unparented TabContents if you
178 TabContentsDestroyed(Source<TabContents>(source).ptr());
181 void TabContentsContainerGtk::TabContentsDestroyed(TabContents* contents) {
182 // Sometimes, a TabContents is destroyed before we know about it. This allows
  /external/chromium/chrome/browser/ui/
shell_dialogs.h 17 class TabContents;
123 // |source_contents| is the TabContents the call is originating from, i.e.
138 TabContents* source_contents,
  /external/chromium/chrome/browser/ui/views/
dom_view.cc 36 TabContents* DOMView::CreateTabContents(Profile* profile,
38 return new TabContents(profile, instance, MSG_ROUTING_NONE, NULL, NULL);
repost_form_warning_view.cc 23 TabContents* tab_contents) {
34 TabContents* tab_contents)
  /external/chromium/chrome/browser/ui/views/location_bar/
content_setting_image_view.h 20 class TabContents;
38 void UpdateFromTabContents(TabContents* tab_contents);
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_container_native.cc 38 void TabContentsContainer::ChangeTabContents(TabContents* contents) {
54 void TabContentsContainer::TabContentsFocused(TabContents* tab_contents) {
  /external/chromium/chrome/browser/ui/webui/
html_dialog_ui.cc 17 HtmlDialogUI::HtmlDialogUI(TabContents* tab_contents) : WebUI(tab_contents) {
21 // Don't unregister our property. During the teardown of the TabContents,
22 // this will be deleted, but the TabContents will already be destroyed.
24 // This object is owned indirectly by the TabContents. WebUIs can change, so
27 // is itself the owner of the TabContents for a dialog so will be in scope,
76 ExternalHtmlDialogUI::ExternalHtmlDialogUI(TabContents* tab_contents)
print_preview_ui_html_source_unittest.cc 27 TabContents* initiator_tab = browser()->GetSelectedTabContents();
34 TabContents* preview_tab = controller->GetOrCreatePreviewTab(initiator_tab);
  /external/chromium/chrome/browser/ui/webui/options/
advanced_options_utils_win.cc 54 TabContents* tab_contents) {
61 TabContents* tab_contents) {
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller.h 45 class TabContents;
172 - (void)updateToolbarWithContents:(TabContents*)tab
244 - (void)updateDevToolsForContents:(TabContents*)contents;
248 - (void)updateSidebarForContents:(TabContents*)contents;
268 - (void)showInstant:(TabContents*)previewContents;
  /external/chromium/chrome/browser/ui/touch/frame/
touch_browser_frame_view.cc 37 bool TabContentsHasFocus(const TabContents* contents) {
177 TabContents* contents = browser_view()->browser()->GetSelectedTabContents();
213 TabContents* contents = new_contents->tab_contents();
230 const TabContents* current_tab = browser->GetSelectedTabContents();
231 TabContents* source_tab = Source<TabContents>(source).ptr();
251 Source<TabContents>(source).ptr()->property_bag());
  /external/chromium/chrome/browser/automation/
automation_tab_helper.cc 37 AutomationTabHelper::AutomationTabHelper(TabContents* tab_contents)
88 void AutomationTabHelper::TabContentsDestroyed(TabContents* tab_contents) {
93 TabContents* tab_contents) {

Completed in 732 milliseconds

1 2 3 4 5 6 7 8 91011>>