| Index: ui/app_list/search_box_view_delegate.h
|
| diff --git a/ui/app_list/search_box_view_delegate.h b/ui/app_list/search_box_view_delegate.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c79b72a120d38dace67943625f6f551836711635
|
| --- /dev/null
|
| +++ b/ui/app_list/search_box_view_delegate.h
|
| @@ -0,0 +1,26 @@
|
| +// 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 UI_APP_LIST_SEARCH_BOX_VIEW_DELEGATE_H_
|
| +#define UI_APP_LIST_SEARCH_BOX_VIEW_DELEGATE_H_
|
| +#pragma once
|
| +
|
| +#include "ui/app_list/app_list_export.h"
|
| +
|
| +namespace app_list {
|
| +
|
| +class SearchBoxView;
|
| +
|
| +class APP_LIST_EXPORT SearchBoxViewDelegate {
|
| + public:
|
| + // Invoked when query text has changed by the user.
|
| + virtual void QueryChanged(SearchBoxView* sender) = 0;
|
| +
|
| + protected:
|
| + virtual ~SearchBoxViewDelegate() {}
|
| +};
|
| +
|
| +} // namespace ash
|
| +
|
| +#endif // UI_APP_LIST_SEARCH_BOX_VIEW_DELEGATE_H_
|
|
|