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

Unified Diff: chrome/browser/chromeos/launcher_search_provider/service.h

Issue 1208963003: Move GN obj files to target-specific dirs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: \ Created 5 years, 5 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: chrome/browser/chromeos/launcher_search_provider/service.h
diff --git a/chrome/browser/chromeos/launcher_search_provider/service.h b/chrome/browser/chromeos/launcher_search_provider/service.h
deleted file mode 100644
index 8ff5c850ee94b8308e140a186ac416a0b884a134..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/launcher_search_provider/service.h
+++ /dev/null
@@ -1,91 +0,0 @@
-// Copyright 2015 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 CHROME_BROWSER_CHROMEOS_LAUNCHER_SEARCH_PROVIDER_SERVICE_H_
-#define CHROME_BROWSER_CHROMEOS_LAUNCHER_SEARCH_PROVIDER_SERVICE_H_
-
-#include "base/memory/scoped_ptr.h"
-#include "chrome/browser/chromeos/launcher_search_provider/error_reporter.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/common/extensions/api/launcher_search_provider.h"
-#include "components/keyed_service/core/keyed_service.h"
-#include "content/public/browser/browser_context.h"
-#include "extensions/browser/event_router.h"
-#include "extensions/browser/extension_registry_observer.h"
-#include "extensions/common/extension.h"
-
-namespace app_list {
-class LauncherSearchProvider;
-} // namespace app_list
-
-namespace chromeos {
-namespace launcher_search_provider {
-
-// Relevance score should be provided in a range from 0 to 4. 0 is the lowest
-// relevance, 4 is the highest.
-const int kMaxSearchResultScore = 4;
-
-// Manages listener extensions and routes events. Listener extensions are
-// extensions which are allowed to use this API. When this API becomes public,
-// this API is white listed for file manager, and opt-in for other extensions.
-// This service provides access control for it.
-//
-// TODO(yawano): Implement opt-in control (crbug.com/440649).
-class Service : public KeyedService,
- public extensions::ExtensionRegistryObserver {
- public:
- Service(Profile* profile, extensions::ExtensionRegistry* extension_registry);
- ~Service() override;
- static Service* Get(content::BrowserContext* context);
-
- // Dispatches onQueryStarted events to listener extensions.
- void OnQueryStarted(app_list::LauncherSearchProvider* provider,
- const std::string& query,
- const int max_result);
-
- // Dispatches onQueryEnded events to listener extensions.
- void OnQueryEnded();
-
- // Dispatches onOpenResult event of |item_id| to |extension_id|.
- void OnOpenResult(const extensions::ExtensionId& extension_id,
- const std::string& item_id);
-
- // Sets search results of a listener extension.
- void SetSearchResults(
- const extensions::Extension* extension,
- scoped_ptr<ErrorReporter> error_reporter,
- const int query_id,
- const std::vector<linked_ptr<
- extensions::api::launcher_search_provider::SearchResult>>& results);
-
- // Returns true if there is a running query.
- bool IsQueryRunning() const;
-
- // extensions::ExtensionRegistryObserver override.
- void OnExtensionLoaded(content::BrowserContext* browser_context,
- const extensions::Extension* extension) override;
- void OnExtensionUnloaded(
- content::BrowserContext* browser_context,
- const extensions::Extension* extension,
- extensions::UnloadedExtensionInfo::Reason reason) override;
-
- private:
- // Cache listener extension ids and set them to
- // |cached_listener_extension_ids_|.
- void CacheListenerExtensionIds();
-
- Profile* const profile_;
- extensions::ExtensionRegistry* extension_registry_;
- app_list::LauncherSearchProvider* provider_;
- int query_id_;
- bool is_query_running_;
- scoped_ptr<std::set<extensions::ExtensionId>> cached_listener_extension_ids_;
-
- DISALLOW_COPY_AND_ASSIGN(Service);
-};
-
-} // namespace launcher_search_provider
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_LAUNCHER_SEARCH_PROVIDER_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698