2014-10-31 18:17:05 +00:00
|
|
|
// 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
|
2013-05-03 02:53:54 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_BROWSER_OBSERVER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_BROWSER_OBSERVER_H_
|
2013-05-03 02:53:54 +00:00
|
|
|
|
2013-05-30 08:03:10 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-08-23 09:55:13 +00:00
|
|
|
#include "base/memory/scoped_refptr.h"
|
2018-10-25 06:43:50 +00:00
|
|
|
#include "base/observer_list_types.h"
|
2016-05-05 03:26:23 +00:00
|
|
|
#include "build/build_config.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/login_handler.h"
|
2016-05-05 03:26:23 +00:00
|
|
|
|
2016-05-05 07:26:44 +00:00
|
|
|
namespace base {
|
|
|
|
class DictionaryValue;
|
|
|
|
}
|
|
|
|
|
2013-05-03 02:53:54 +00:00
|
|
|
namespace electron {
|
|
|
|
|
2018-10-25 06:43:50 +00:00
|
|
|
class BrowserObserver : public base::CheckedObserver {
|
2013-05-03 02:53:54 +00:00
|
|
|
public:
|
2015-02-26 03:33:42 +00:00
|
|
|
// The browser is about to close all windows.
|
|
|
|
virtual void OnBeforeQuit(bool* prevent_default) {}
|
2015-02-26 05:57:25 +00:00
|
|
|
|
2013-05-03 02:53:54 +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() {}
|
|
|
|
|
2013-05-30 08:03:10 +00:00
|
|
|
// The browser has opened a file by double clicking in Finder or dragging the
|
2016-06-18 13:26:26 +00:00
|
|
|
// file to the Dock icon. (macOS only)
|
2018-04-18 01:44:10 +00:00
|
|
|
virtual void OnOpenFile(bool* prevent_default, const std::string& file_path) {
|
|
|
|
}
|
2013-05-30 08:03:10 +00:00
|
|
|
|
2013-07-10 08:10:38 +00:00
|
|
|
// Browser is used to open a url.
|
|
|
|
virtual void OnOpenURL(const std::string& url) {}
|
|
|
|
|
2015-09-15 01:34:27 +00:00
|
|
|
// 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) {}
|
2015-09-14 11:28:13 +00:00
|
|
|
|
2013-05-30 11:12:14 +00:00
|
|
|
// The browser has finished loading.
|
2013-06-03 07:31:46 +00:00
|
|
|
virtual void OnWillFinishLaunching() {}
|
2016-09-01 00:17:44 +00:00
|
|
|
virtual void OnFinishLaunching(const base::DictionaryValue& launch_info) {}
|
2013-05-30 11:12:14 +00:00
|
|
|
|
2022-06-16 07:46:11 +00:00
|
|
|
// The browser's accessibility support has changed.
|
2016-07-11 21:46:28 +00:00
|
|
|
virtual void OnAccessibilitySupportChanged() {}
|
2016-07-11 21:04:56 +00:00
|
|
|
|
2017-09-15 19:33:12 +00:00
|
|
|
// The app message loop is ready
|
|
|
|
virtual void OnPreMainMessageLoopRun() {}
|
|
|
|
|
2020-04-13 23:39:26 +00:00
|
|
|
// Called just before app threads are created, this is where first access
|
|
|
|
// to in-process GpuDataManager should be made.
|
|
|
|
// Refer https://chromium-review.googlesource.com/c/chromium/src/+/2134864
|
|
|
|
virtual void OnPreCreateThreads() {}
|
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
2017-06-26 19:14:44 +00:00
|
|
|
// The browser wants to report that an user activity will resume. (macOS only)
|
2018-04-18 01:44:10 +00:00
|
|
|
virtual void OnWillContinueUserActivity(bool* prevent_default,
|
|
|
|
const std::string& type) {}
|
2017-06-26 19:14:44 +00:00
|
|
|
// The browser wants to report an user activity resuming error. (macOS only)
|
2018-04-18 01:44:10 +00:00
|
|
|
virtual void OnDidFailToContinueUserActivity(const std::string& type,
|
|
|
|
const std::string& error) {}
|
2016-06-18 13:26:26 +00:00
|
|
|
// The browser wants to resume a user activity via handoff. (macOS only)
|
2018-04-18 01:44:10 +00:00
|
|
|
virtual void OnContinueUserActivity(bool* prevent_default,
|
|
|
|
const std::string& type,
|
2021-07-13 20:21:33 +00:00
|
|
|
const base::DictionaryValue& user_info,
|
|
|
|
const base::DictionaryValue& details) {}
|
2017-06-26 19:14:44 +00:00
|
|
|
// The browser wants to notify that an user activity was resumed. (macOS only)
|
|
|
|
virtual void OnUserActivityWasContinued(
|
|
|
|
const std::string& type,
|
|
|
|
const base::DictionaryValue& user_info) {}
|
|
|
|
// The browser wants to update an user activity payload. (macOS only)
|
|
|
|
virtual void OnUpdateUserActivityState(
|
2017-08-09 15:09:47 +00:00
|
|
|
bool* prevent_default,
|
2017-06-26 19:14:44 +00:00
|
|
|
const std::string& type,
|
|
|
|
const base::DictionaryValue& user_info) {}
|
2017-06-11 08:19:01 +00:00
|
|
|
// User clicked the native macOS new tab button. (macOS only)
|
|
|
|
virtual void OnNewWindowForTab() {}
|
2020-06-16 17:03:41 +00:00
|
|
|
|
|
|
|
// Browser did become active.
|
|
|
|
virtual void OnDidBecomeActive() {}
|
2016-05-05 03:26:23 +00:00
|
|
|
#endif
|
2016-04-30 00:36:04 +00:00
|
|
|
|
2013-05-03 02:53:54 +00:00
|
|
|
protected:
|
2018-10-25 06:43:50 +00:00
|
|
|
~BrowserObserver() override {}
|
2013-05-03 02:53:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_BROWSER_OBSERVER_H_
|