diff options
author | mukai <mukai@chromium.org> | 2014-10-10 14:07:50 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-10 21:08:08 +0000 |
commit | 2ba30fe7f0c4640d3007b3357f0d0ab89637919e (patch) | |
tree | a41089d1a6e4e1d6c1751c1be7092105e490ff82 /athena/extensions/public | |
parent | 3f6b84cd4ebdc209f3d607f2336e6f43aadcd2df (diff) | |
download | chromium_src-2ba30fe7f0c4640d3007b3357f0d0ab89637919e.zip chromium_src-2ba30fe7f0c4640d3007b3357f0d0ab89637919e.tar.gz chromium_src-2ba30fe7f0c4640d3007b3357f0d0ab89637919e.tar.bz2 |
Adds full-functional search results for Athena on Chrome.
BUG=380875, 421444
R=oshima@chromium.org, xiyuan@chromium.org
TBR=pkasting@chromium.org, jar@chromium.org
TEST=manually
Review URL: https://codereview.chromium.org/640103002
Cr-Commit-Position: refs/heads/master@{#299186}
Diffstat (limited to 'athena/extensions/public')
-rw-r--r-- | athena/extensions/public/apps_search_controller_factory.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/athena/extensions/public/apps_search_controller_factory.h b/athena/extensions/public/apps_search_controller_factory.h new file mode 100644 index 0000000..f17e490 --- /dev/null +++ b/athena/extensions/public/apps_search_controller_factory.h @@ -0,0 +1,22 @@ +// Copyright 2014 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 ATHENA_EXTENSIONS_PUBLIC_APPS_SEARCH_CONTROLLER_FACTORY_H_ +#define ATHENA_EXTENSIONS_PUBLIC_APPS_SEARCH_CONTROLLER_FACTORY_H_ + +#include "athena/athena_export.h" + +namespace content { +class BrowserContext; +} + +namespace athena { +class SearchControllerFactory; + +ATHENA_EXPORT scoped_ptr<SearchControllerFactory> CreateSearchControllerFactory( + content::BrowserContext* context); + +} // namespace athena + +#endif // ATHENA_EXTENSIONS_PUBLIC_APPS_SEARCH_CONTROLLER_FACTORY_H_ |