electron/atom/browser/browser_observer.h

69 lines
1.9 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2014-03-16 00:58:59 +00:00
#ifndef ATOM_BROWSER_BROWSER_OBSERVER_H_
#define ATOM_BROWSER_BROWSER_OBSERVER_H_
#include <string>
2016-05-05 03:26:23 +00:00
#include "build/build_config.h"
namespace base {
class DictionaryValue;
}
namespace atom {
2015-10-28 11:34:01 +00:00
class LoginHandler;
class BrowserObserver {
public:
// The browser is about to close all windows.
virtual void OnBeforeQuit(bool* prevent_default) {}
2015-02-26 05:57:25 +00:00
// The browser has closed all windows and will quit.
virtual void OnWillQuit(bool* prevent_default) {}
// The browser has closed all windows. If the browser is quiting, then this
// method will not be called, instead it will call OnWillQuit.
virtual void OnWindowAllClosed() {}
2014-09-25 13:47:54 +00:00
// The browser is quitting.
virtual void OnQuit() {}
// The browser has opened a file by double clicking in Finder or dragging the
// file to the Dock icon. (OS X only)
virtual void OnOpenFile(bool* prevent_default,
const std::string& file_path) {}
// Browser is used to open a url.
virtual void OnOpenURL(const std::string& url) {}
// The browser is activated with visible/invisible windows (usually by
// clicking on the dock icon).
2015-09-15 02:05:53 +00:00
virtual void OnActivate(bool has_visible_windows) {}
// The browser has finished loading.
virtual void OnWillFinishLaunching() {}
virtual void OnFinishLaunching() {}
2015-10-28 11:34:01 +00:00
// The browser requests HTTP login.
virtual void OnLogin(LoginHandler* login_handler) {}
2016-05-05 03:26:23 +00:00
#if defined(OS_MACOSX)
// The browser wants to resume a user activity via handoff. (OS X only)
2016-05-05 03:26:23 +00:00
virtual void OnContinueUserActivity(
bool* prevent_default,
const std::string& type,
const base::DictionaryValue& user_info) {}
2016-05-05 03:26:23 +00:00
#endif
protected:
virtual ~BrowserObserver() {}
};
} // namespace atom
2014-03-16 00:58:59 +00:00
#endif // ATOM_BROWSER_BROWSER_OBSERVER_H_