2020-10-27 14:28:43 -07:00
|
|
|
// Copyright (c) 2020 Microsoft, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_EXTENDED_WEB_CONTENTS_OBSERVER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_EXTENDED_WEB_CONTENTS_OBSERVER_H_
|
2020-10-27 14:28:43 -07:00
|
|
|
|
2021-05-31 18:34:44 -07:00
|
|
|
#include <string>
|
2020-10-27 14:28:43 -07:00
|
|
|
|
2024-07-29 12:42:57 -05:00
|
|
|
#include "base/observer_list_types.h"
|
2024-07-22 04:31:32 -05:00
|
|
|
|
|
|
|
namespace gfx {
|
|
|
|
class Rect;
|
|
|
|
}
|
2020-10-27 14:28:43 -07:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
// Certain events are only in WebContentsDelegate, so we provide our own
|
|
|
|
// Observer to dispatch those events.
|
|
|
|
class ExtendedWebContentsObserver : public base::CheckedObserver {
|
|
|
|
public:
|
|
|
|
virtual void OnSetContentBounds(const gfx::Rect& rect) {}
|
|
|
|
virtual void OnActivateContents() {}
|
2021-03-16 12:18:45 -04:00
|
|
|
virtual void OnPageTitleUpdated(const std::u16string& title,
|
2020-10-27 14:28:43 -07:00
|
|
|
bool explicit_set) {}
|
2020-11-10 06:54:04 +09:00
|
|
|
virtual void OnDevToolsResized() {}
|
2020-10-27 14:28:43 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~ExtendedWebContentsObserver() override {}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_EXTENDED_WEB_CONTENTS_OBSERVER_H_
|