Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2120)

Unified Diff: ash/common/system/chromeos/screen_security/screen_share_tray_item.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/common/system/chromeos/screen_security/screen_share_tray_item.h
diff --git a/ash/common/system/chromeos/screen_security/screen_share_tray_item.h b/ash/common/system/chromeos/screen_security/screen_share_tray_item.h
deleted file mode 100644
index 3c74f2382f7baec324faab765e3e37b0deaba565..0000000000000000000000000000000000000000
--- a/ash/common/system/chromeos/screen_security/screen_share_tray_item.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_COMMON_SYSTEM_CHROMEOS_SCREEN_SECURITY_SCREEN_SHARE_TRAY_ITEM_H_
-#define ASH_COMMON_SYSTEM_CHROMEOS_SCREEN_SECURITY_SCREEN_SHARE_TRAY_ITEM_H_
-
-#include "ash/common/system/chromeos/screen_security/screen_share_observer.h"
-#include "ash/common/system/chromeos/screen_security/screen_tray_item.h"
-#include "base/macros.h"
-
-namespace views {
-class View;
-}
-
-namespace ash {
-
-class ASH_EXPORT ScreenShareTrayItem : public ScreenTrayItem,
- public ScreenShareObserver {
- public:
- explicit ScreenShareTrayItem(SystemTray* system_tray);
- ~ScreenShareTrayItem() override;
-
- private:
- // Overridden from SystemTrayItem.
- views::View* CreateDefaultView(LoginStatus status) override;
-
- // Overridden from ScreenTrayItem.
- void CreateOrUpdateNotification() override;
- std::string GetNotificationId() override;
- void RecordStoppedFromDefaultViewMetric() override;
- void RecordStoppedFromNotificationViewMetric() override;
-
- // Overridden from ScreenShareObserver.
- void OnScreenShareStart(const base::Closure& stop_callback,
- const base::string16& helper_name) override;
- void OnScreenShareStop() override;
-
- base::string16 helper_name_;
-
- DISALLOW_COPY_AND_ASSIGN(ScreenShareTrayItem);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_CHROMEOS_SCREEN_SECURITY_SCREEN_SHARE_TRAY_ITEM_H_

Powered by Google App Engine
This is Rietveld 408576698