| Index: ash/system/chromeos/network/network_tray_delegate.h
|
| diff --git a/ash/system/chromeos/network/network_tray_delegate.h b/ash/system/chromeos/network/network_tray_delegate.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0ce54023bfa9d6100c8052ca04d866eb38f90fab
|
| --- /dev/null
|
| +++ b/ash/system/chromeos/network/network_tray_delegate.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright (c) 2012 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_SYSTEM_CHROMEOS_NETWORK_NETWORK_TRAY_DELEGATE_H
|
| +#define ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_TRAY_DELEGATE_H
|
| +
|
| +#include "ash/system/chromeos/network/network_observer.h"
|
| +
|
| +namespace ash {
|
| +
|
| +class NetworkTrayDelegate {
|
| + public:
|
| + virtual ~NetworkTrayDelegate() {}
|
| +
|
| + // Notifies that the |index|-th link on the notification is clicked.
|
| + virtual void NotificationLinkClicked(
|
| + NetworkObserver::MessageType message_type,
|
| + size_t link_index) = 0;
|
| +};
|
| +
|
| +} // namespace ash
|
| +
|
| +#endif // ASH_SYSTEM_CHROMEOS_NETWORK_NETWORK_TRAY_DELEGATE_H
|
|
|