/external/chromium/chrome/browser/printing/ |
print_preview_tab_controller.cc | 78 TabContents* source_tab = NULL; local 83 source_tab = Source<TabContents>(source).ptr(); 89 source_tab = controller->tab_contents(); 100 DCHECK(source_tab); 102 TabContents* preview_tab = GetPrintPreviewForTab(source_tab); 103 bool source_tab_is_preview_tab = (source_tab == preview_tab); 135 TabContents* initiator_tab = GetInitiatorTab(source_tab); 140 preview_tab_map_.erase(source_tab); 142 // |source_tab| is an initiator tab, update the map entry. 145 RemoveObservers(source_tab); [all...] |
/external/chromium_org/chrome/browser/extensions/api/messaging/ |
extension_message_port.h | 27 const base::DictionaryValue& source_tab,
|
extension_message_port.cc | 29 const base::DictionaryValue& source_tab, 39 routing_id_, dest_port_id, channel_name, source_tab, info,
|
message_service.cc | 75 base::DictionaryValue source_tab; member in struct:extensions::MessageService::OpenChannelParams 87 scoped_ptr<base::DictionaryValue> source_tab, 103 if (source_tab) 104 this->source_tab.Swap(source_tab.get()); 287 scoped_ptr<base::DictionaryValue> source_tab; local 293 source_tab.reset(ExtensionTabUtil::CreateTabValue(source_contents)); 298 source_tab.Pass(), 470 params->source_tab,
|
message_service.h | 77 const base::DictionaryValue& source_tab,
|
/external/chromium_org/chrome/renderer/extensions/ |
messaging_bindings.h | 47 const base::DictionaryValue& source_tab,
|
extension_helper.h | 87 const base::DictionaryValue& source_tab,
|
messaging_bindings.cc | 247 const base::DictionaryValue& source_tab, 274 if (!source_tab.empty()) 275 tab = converter->ToV8Value(&source_tab, (*it)->v8_context());
|
extension_helper.cc | 275 const base::DictionaryValue& source_tab, 280 target_port_id, channel_name, source_tab,
|
dispatcher.h | 167 const base::DictionaryValue& source_tab,
|
dispatcher.cc | 585 const base::DictionaryValue& source_tab, 590 target_port_id, channel_name, source_tab, [all...] |
/external/chromium/chrome/browser/ui/touch/frame/ |
touch_browser_frame_view.cc | 231 TabContents* source_tab = Source<TabContents>(source).ptr(); local 234 if (current_tab == source_tab && TabContentsHasFocus(source_tab)) 240 source_tab->property_bag(), editable);
|
/external/chromium/chrome/browser/ui/gtk/tabs/ |
dragged_tab_controller_gtk.h | 29 DraggedTabControllerGtk(TabGtk* source_tab, TabStripGtk* source_tabstrip);
|
dragged_tab_controller_gtk.cc | 36 DraggedTabControllerGtk::DraggedTabControllerGtk(TabGtk* source_tab, 40 source_tab_(source_tab), 42 source_model_index_(source_tabstrip->GetIndexOfTab(source_tab)),
|
/external/chromium/chrome/browser/ui/views/tabs/ |
dragged_tab_controller.h | 50 // from |source_tabstrip|. |source_tab| is the tab that initiated the drag and 53 // the offset from |source_tab|. |source_tab_offset| is the horizontal distant 57 BaseTab* source_tab,
|
dragged_tab_controller.cc | 352 BaseTab* source_tab, 357 DCHECK(std::find(tabs.begin(), tabs.end(), source_tab) != tabs.end()); 367 std::find(tabs.begin(), tabs.end(), source_tab) - tabs.begin(); 372 if (source_tab->width() > 0) { 374 static_cast<float>(source_tab->width()); [all...] |
/external/chromium_org/chrome/browser/ui/gtk/tabs/ |
dragged_tab_controller_gtk.h | 33 // dragging occurs. |source_tab| is the tab that is under the mouse pointer 36 DraggedTabControllerGtk(TabStripGtk* source_tabstrip, TabGtk* source_tab,
|
dragged_tab_controller_gtk.cc | 58 TabGtk* source_tab, 66 DCHECK(std::find(tabs.begin(), tabs.end(), source_tab) != tabs.end()); 73 std::find(tabs.begin(), tabs.end(), source_tab) - tabs.begin(); [all...] |
/external/chromium_org/chrome/browser/ui/views/tabs/ |
tab_drag_controller.h | 91 // |source_tabstrip|. |source_tab| is the tab that initiated the drag and is 94 // offset from |source_tab|. |source_tab_offset| is the horizontal offset of 95 // |mouse_offset| relative to |source_tab|. |initial_selection_model| is the 97 // |source_tab| was not initially selected. 99 Tab* source_tab,
|
tab_drag_controller.cc | 442 Tab* source_tab, 451 DCHECK(std::find(tabs.begin(), tabs.end(), source_tab) != tabs.end()); 460 views::View::ConvertPointToScreen(source_tab, &start_point_in_screen_); 478 std::find(tabs.begin(), tabs.end(), source_tab) - tabs.begin(); 483 if (source_tab->width() > 0) { 485 source_tab->GetMirroredXInView(source_tab_offset)) / 486 static_cast<float>(source_tab->width()); [all...] |