| Index: ui/aura/client/tooltip_client.h
|
| diff --git a/ui/aura/client/tooltip_client.h b/ui/aura/client/tooltip_client.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b45e5ae84fabf150ddde8d221512e5caf0d7e7e6
|
| --- /dev/null
|
| +++ b/ui/aura/client/tooltip_client.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright (c) 2011 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 UI_AURA_CLIENT_TOOLTIP_CLIENT_H_
|
| +#define UI_AURA_CLIENT_TOOLTIP_CLIENT_H_
|
| +#pragma once
|
| +
|
| +#include "ui/aura/aura_export.h"
|
| +#include "ui/aura/event.h"
|
| +
|
| +namespace aura {
|
| +
|
| +class Window;
|
| +
|
| +class AURA_EXPORT TooltipClient {
|
| + public:
|
| + // Informs the shell tooltip manager of change in tooltip for window |target|.
|
| + virtual void UpdateTooltip(Window* target) = 0;
|
| +};
|
| +
|
| +} // namespace aura
|
| +
|
| +#endif // UI_AURA_CLIENT_TOOLTIP_CLIENT_H_
|
|
|