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

Unified Diff: chrome/browser/intents/web_intents_registry.h

Issue 7930002: Rename WebIntentData for backend storage to WebIntentServiceData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix class/struct decl Created 9 years, 3 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
« no previous file with comments | « chrome/browser/intents/web_intent_service_data.cc ('k') | chrome/browser/intents/web_intents_registry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/intents/web_intents_registry.h
diff --git a/chrome/browser/intents/web_intents_registry.h b/chrome/browser/intents/web_intents_registry.h
index 1c81002f07139110a8e443398fc8a781a919e896..3b1af44e08293e4aa37c4f5e36bc4555e8898e10 100644
--- a/chrome/browser/intents/web_intents_registry.h
+++ b/chrome/browser/intents/web_intents_registry.h
@@ -8,7 +8,7 @@
#include "base/hash_tables.h"
#include "base/memory/ref_counted.h"
-#include "chrome/browser/intents/web_intent_data.h"
+#include "chrome/browser/intents/web_intent_service_data.h"
#include "chrome/browser/profiles/profile_keyed_service.h"
#include "chrome/browser/webdata/web_data_service.h"
@@ -28,7 +28,7 @@ class WebIntentsRegistry
// Notifies the observer that the intents request has been completed.
virtual void OnIntentsQueryDone(
QueryID query_id,
- const std::vector<WebIntentData>& intents) = 0;
+ const std::vector<WebIntentServiceData>& intents) = 0;
protected:
virtual ~Consumer() {}
@@ -38,10 +38,10 @@ class WebIntentsRegistry
void Initialize(scoped_refptr<WebDataService> wds);
// Registers a web intent provider.
- virtual void RegisterIntentProvider(const WebIntentData& intent);
+ virtual void RegisterIntentProvider(const WebIntentServiceData& intent);
// Removes a web intent provider from the registry.
- void UnregisterIntentProvider(const WebIntentData& intent);
+ void UnregisterIntentProvider(const WebIntentServiceData& intent);
// Requests all intent providers matching |action|.
// |consumer| must not be NULL.
« no previous file with comments | « chrome/browser/intents/web_intent_service_data.cc ('k') | chrome/browser/intents/web_intents_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698