Index: chrome/browser/intents/intent_service_host.h |
diff --git a/chrome/browser/intents/intent_service_host.h b/chrome/browser/intents/intent_service_host.h |
deleted file mode 100644 |
index 8c42be9ef0d130c674b532dc543d8d2535833191..0000000000000000000000000000000000000000 |
--- a/chrome/browser/intents/intent_service_host.h |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-// 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 CHROME_BROWSER_INTENTS_INTENT_SERVICE_HOST_H_ |
-#define CHROME_BROWSER_INTENTS_INTENT_SERVICE_HOST_H_ |
- |
-class GURL; |
- |
-namespace content { |
-class WebIntentsDispatcher; |
-} |
- |
-namespace web_intents { |
- |
-// Interface allowing services to be implemented in various host environments. |
-class IntentServiceHost { |
- public: |
- virtual ~IntentServiceHost() {} |
- |
- // Handle all necessary service-side processing of an intent. A service |
- // can reply to the intent via |dispatcher|. |
- virtual void HandleIntent(content::WebIntentsDispatcher* dispatcher) = 0; |
-}; |
- |
-} // namespace web_intents |
- |
-#endif // CHROME_BROWSER_INTENTS_INTENT_SERVICE_HOST_H_ |