| // Copyright 2015 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_SESSION_PLUGIN_HANDLER_H_ |
| #define CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_SESSION_PLUGIN_HANDLER_H_ |
| |
| #include <memory> |
| #include <set> |
| #include <vector> |
| |
| #include "base/memory/raw_ptr.h" |
| #include "base/timer/timer.h" |
| #include "content/public/browser/web_contents_observer.h" |
| #include "content/public/common/buildflags.h" |
| |
| #if !BUILDFLAG(ENABLE_PLUGINS) |
| #error "Plugins should be enabled" |
| #endif |
| |
| namespace base { |
| class FilePath; |
| } |
| |
| namespace content { |
| class WebContents; |
| } |
| |
| namespace chromeos { |
| |
| class KioskSessionPluginHandlerDelegate; |
| |
| // A class to watch for plugin crash/hung in a kiosk session. Device will be |
| // rebooted after the first crash/hung is detected. |
| class KioskSessionPluginHandler { |
| public: |
| class Observer : public content::WebContentsObserver { |
| public: |
| Observer(content::WebContents* contents, KioskSessionPluginHandler* owner); |
| Observer(const Observer&) = delete; |
| Observer& operator=(const Observer&) = delete; |
| ~Observer() override; |
| |
| std::set<int> GetHungPluginsForTesting() const; |
| |
| private: |
| void OnHungWaitTimer(); |
| |
| // content::WebContentsObserver |
| void WebContentsDestroyed() override; |
| |
| const raw_ptr<KioskSessionPluginHandler, DanglingUntriaged> owner_; |
| std::set<int> hung_plugins_; |
| base::OneShotTimer hung_wait_timer_; |
| }; |
| |
| explicit KioskSessionPluginHandler( |
| KioskSessionPluginHandlerDelegate* delegate); |
| KioskSessionPluginHandler(const KioskSessionPluginHandler&) = delete; |
| KioskSessionPluginHandler& operator=(const KioskSessionPluginHandler&) = |
| delete; |
| ~KioskSessionPluginHandler(); |
| |
| void Observe(content::WebContents* contents); |
| |
| std::vector<Observer*> GetWatchersForTesting() const; |
| |
| private: |
| void OnPluginCrashed(const base::FilePath& plugin_path); |
| void OnPluginHung(const std::set<int>& hung_plugins); |
| void OnWebContentsDestroyed(Observer* observer); |
| |
| const raw_ptr<KioskSessionPluginHandlerDelegate> delegate_; |
| std::vector<std::unique_ptr<Observer>> watchers_; |
| }; |
| |
| } // namespace chromeos |
| |
| #endif // CHROME_BROWSER_CHROMEOS_APP_MODE_KIOSK_SESSION_PLUGIN_HANDLER_H_ |