| // Copyright 2013 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_ASH_NOTIFICATIONS_SCREEN_CAPTURE_NOTIFICATION_UI_ASH_H_ |
| #define CHROME_BROWSER_ASH_NOTIFICATIONS_SCREEN_CAPTURE_NOTIFICATION_UI_ASH_H_ |
| |
| #include "base/memory/weak_ptr.h" |
| #include "chrome/browser/ui/screen_capture_notification_ui.h" |
| |
| namespace ash { |
| |
| // Ash implementation for ScreenCaptureNotificationUI. |
| class ScreenCaptureNotificationUIAsh : public ScreenCaptureNotificationUI { |
| public: |
| // |text| is used to specify the text for the notification. |
| explicit ScreenCaptureNotificationUIAsh(const std::u16string& text); |
| |
| ScreenCaptureNotificationUIAsh(const ScreenCaptureNotificationUIAsh&) = |
| delete; |
| ScreenCaptureNotificationUIAsh& operator=( |
| const ScreenCaptureNotificationUIAsh&) = delete; |
| |
| ~ScreenCaptureNotificationUIAsh() override; |
| |
| // ScreenCaptureNotificationUI overrides. |
| gfx::NativeViewId OnStarted( |
| base::OnceClosure stop_callback, |
| content::MediaStreamUI::SourceCallback source_callback, |
| const std::vector<content::DesktopMediaID>& media_ids) override; |
| |
| private: |
| void ProcessStopRequestFromUI(); |
| |
| const std::u16string text_; |
| base::OnceClosure stop_callback_; |
| |
| base::WeakPtrFactory<ScreenCaptureNotificationUIAsh> weak_ptr_factory_{this}; |
| }; |
| |
| } // namespace ash |
| |
| #endif // CHROME_BROWSER_ASH_NOTIFICATIONS_SCREEN_CAPTURE_NOTIFICATION_UI_ASH_H_ |