2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-03 10:53:54 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_BROWSER_OBSERVER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_BROWSER_OBSERVER_H_
|
2013-05-03 10:53:54 +08:00
|
|
|
|
2013-05-30 16:03:10 +08:00
|
|
|
#include <string>
|
|
|
|
|
2018-08-23 15:25:13 +05:30
|
|
|
#include "base/memory/scoped_refptr.h"
|
2018-10-25 17:43:50 +11:00
|
|
|
#include "base/observer_list_types.h"
|
2024-07-25 04:25:45 -05:00
|
|
|
#include "base/values.h"
|
2016-05-05 12:26:23 +09:00
|
|
|
#include "build/build_config.h"
|
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
namespace electron {
|
|
|
|
|
2018-10-25 17:43:50 +11:00
|
|
|
class BrowserObserver : public base::CheckedObserver {
|
2013-05-03 10:53:54 +08:00
|
|
|
public:
|
2015-02-25 19:33:42 -08:00
|
|
|
// The browser is about to close all windows.
|
|
|
|
virtual void OnBeforeQuit(bool* prevent_default) {}
|
2015-02-25 21:57:25 -08:00
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
// The browser has closed all windows and will quit.
|
|
|
|
virtual void OnWillQuit(bool* prevent_default) {}
|
|
|
|
|
2023-11-12 19:51:56 -08:00
|
|
|
// The browser has closed all windows. If the browser is quitting, then this
|
2013-05-03 10:53:54 +08:00
|
|
|
// method will not be called, instead it will call OnWillQuit.
|
|
|
|
virtual void OnWindowAllClosed() {}
|
|
|
|
|
2014-09-25 21:47:54 +08:00
|
|
|
// The browser is quitting.
|
|
|
|
virtual void OnQuit() {}
|
|
|
|
|
2013-05-30 16:03:10 +08:00
|
|
|
// The browser has opened a file by double clicking in Finder or dragging the
|
2016-06-18 15:26:26 +02:00
|
|
|
// file to the Dock icon. (macOS only)
|
2018-04-17 21:44:10 -04:00
|
|
|
virtual void OnOpenFile(bool* prevent_default, const std::string& file_path) {
|
|
|
|
}
|
2013-05-30 16:03:10 +08:00
|
|
|
|
2013-07-10 16:10:38 +08:00
|
|
|
// Browser is used to open a url.
|
|
|
|
virtual void OnOpenURL(const std::string& url) {}
|
|
|
|
|
2015-09-14 18:34:27 -07:00
|
|
|
// The browser is activated with visible/invisible windows (usually by
|
|
|
|
// clicking on the dock icon).
|
2015-09-14 19:05:53 -07:00
|
|
|
virtual void OnActivate(bool has_visible_windows) {}
|
2015-09-14 19:28:13 +08:00
|
|
|
|
2013-05-30 19:12:14 +08:00
|
|
|
// The browser has finished loading.
|
2013-06-03 15:31:46 +08:00
|
|
|
virtual void OnWillFinishLaunching() {}
|
2022-06-22 23:28:41 -07:00
|
|
|
virtual void OnFinishLaunching(base::Value::Dict launch_info) {}
|
2013-05-30 19:12:14 +08:00
|
|
|
|
2022-06-16 03:46:11 -04:00
|
|
|
// The browser's accessibility support has changed.
|
2016-07-11 14:46:28 -07:00
|
|
|
virtual void OnAccessibilitySupportChanged() {}
|
2016-07-11 14:04:56 -07:00
|
|
|
|
2017-09-16 05:33:12 +10:00
|
|
|
// The app message loop is ready
|
|
|
|
virtual void OnPreMainMessageLoopRun() {}
|
|
|
|
|
2020-04-13 16:39:26 -07: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-09 18:58:52 -08:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
2017-06-26 16:14:44 -03:00
|
|
|
// The browser wants to report that an user activity will resume. (macOS only)
|
2018-04-17 21:44:10 -04:00
|
|
|
virtual void OnWillContinueUserActivity(bool* prevent_default,
|
|
|
|
const std::string& type) {}
|
2017-06-26 16:14:44 -03:00
|
|
|
// The browser wants to report an user activity resuming error. (macOS only)
|
2018-04-17 21:44:10 -04:00
|
|
|
virtual void OnDidFailToContinueUserActivity(const std::string& type,
|
|
|
|
const std::string& error) {}
|
2016-06-18 15:26:26 +02:00
|
|
|
// The browser wants to resume a user activity via handoff. (macOS only)
|
2018-04-17 21:44:10 -04:00
|
|
|
virtual void OnContinueUserActivity(bool* prevent_default,
|
|
|
|
const std::string& type,
|
2022-06-22 23:28:41 -07:00
|
|
|
base::Value::Dict user_info,
|
|
|
|
base::Value::Dict details) {}
|
2017-06-26 16:14:44 -03:00
|
|
|
// The browser wants to notify that an user activity was resumed. (macOS only)
|
2022-06-22 23:28:41 -07:00
|
|
|
virtual void OnUserActivityWasContinued(const std::string& type,
|
|
|
|
base::Value::Dict user_info) {}
|
2017-06-26 16:14:44 -03:00
|
|
|
// The browser wants to update an user activity payload. (macOS only)
|
2022-06-22 23:28:41 -07:00
|
|
|
virtual void OnUpdateUserActivityState(bool* prevent_default,
|
|
|
|
const std::string& type,
|
|
|
|
base::Value::Dict user_info) {}
|
2017-06-11 01:19:01 -07:00
|
|
|
// User clicked the native macOS new tab button. (macOS only)
|
|
|
|
virtual void OnNewWindowForTab() {}
|
2020-06-16 19:03:41 +02:00
|
|
|
|
2023-04-18 16:53:39 +02:00
|
|
|
// Browser became active.
|
2020-06-16 19:03:41 +02:00
|
|
|
virtual void OnDidBecomeActive() {}
|
2023-04-18 16:53:39 +02:00
|
|
|
// Browser lost active status.
|
|
|
|
virtual void OnDidResignActive() {}
|
2016-05-05 12:26:23 +09:00
|
|
|
#endif
|
2016-04-29 17:36:04 -07:00
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
protected:
|
2024-12-03 16:25:48 -06:00
|
|
|
~BrowserObserver() override = default;
|
2013-05-03 10:53:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_BROWSER_OBSERVER_H_
|