Home
last modified time | relevance | path

Searched refs:UnloadController (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/chrome/browser/ui/
Dunload_controller.cc24 UnloadController::UnloadController(Browser* browser) in UnloadController() function in chrome::UnloadController
31 UnloadController::~UnloadController() { in ~UnloadController()
35 bool UnloadController::CanCloseContents(content::WebContents* contents) { in CanCloseContents()
45 bool UnloadController::ShouldRunUnloadEventsHelper( in ShouldRunUnloadEventsHelper()
53 bool UnloadController::RunUnloadEventsHelper(content::WebContents* contents) { in RunUnloadEventsHelper()
76 bool UnloadController::BeforeUnloadFired(content::WebContents* contents, in BeforeUnloadFired()
107 bool UnloadController::ShouldCloseWindow() { in ShouldCloseWindow()
144 bool UnloadController::CallBeforeUnloadHandlers( in CallBeforeUnloadHandlers()
160 void UnloadController::ResetBeforeUnloadHandlers() { in ResetBeforeUnloadHandlers()
166 bool UnloadController::TabsNeedBeforeUnloadFired() { in TabsNeedBeforeUnloadFired()
[all …]
Dunload_controller.h27 class UnloadController : public content::NotificationObserver,
30 explicit UnloadController(Browser* browser);
31 virtual ~UnloadController();
157 base::WeakPtrFactory<UnloadController> weak_factory_;
159 DISALLOW_COPY_AND_ASSIGN(UnloadController);
Dbrowser_tab_strip_model_delegate.cc128 return chrome::UnloadController::RunUnloadEventsHelper(contents); in RunUnloadListenerBeforeClosing()
137 return chrome::UnloadController::ShouldRunUnloadEventsHelper(contents); in ShouldRunUnloadListenerBeforeClosing()
Dbrowser.h68 class UnloadController; variable
911 scoped_ptr<chrome::UnloadController> unload_controller_;
Dbrowser.cc368 unload_controller_.reset(new chrome::UnloadController(this)); in Browser()