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

Unified Diff: content/browser/intents/internal_web_intents_dispatcher.h

Issue 12225076: Delete most web intents code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 10 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: content/browser/intents/internal_web_intents_dispatcher.h
diff --git a/content/browser/intents/internal_web_intents_dispatcher.h b/content/browser/intents/internal_web_intents_dispatcher.h
deleted file mode 100644
index f8a6f90ad880bdc1b2ffc6c869a56662b2b10e1d..0000000000000000000000000000000000000000
--- a/content/browser/intents/internal_web_intents_dispatcher.h
+++ /dev/null
@@ -1,74 +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 CONTENT_BROWSER_INTENTS_INTERNAL_WEB_INTENTS_DISPATCHER_H_
-#define CONTENT_BROWSER_INTENTS_INTERNAL_WEB_INTENTS_DISPATCHER_H_
-
-#include <vector>
-
-#include "base/callback.h"
-#include "base/compiler_specific.h"
-#include "base/gtest_prod_util.h"
-#include "content/public/browser/web_intents_dispatcher.h"
-#include "webkit/glue/web_intent_data.h"
-
-namespace content {
-class IntentInjector;
-
-// This class implements a web intents dispatcher which originates
-// within the browser process rather than with a particular renderer.
-// The implementation handles replies to the web intents invocation by
-// notifying a registered callback rather than returning
-// those messages to any renderer.
-class CONTENT_EXPORT InternalWebIntentsDispatcher
- : public WebIntentsDispatcher {
- public:
- // This callback will be called during, and receives the same args as,
- // |SendReplyMessage|.
- typedef base::Callback<void(const webkit_glue::WebIntentReply&)>
- ReplyCallback;
-
- // |intent| is the intent payload to be dispatched.
- explicit InternalWebIntentsDispatcher(
- const webkit_glue::WebIntentData& intent);
-
- // |intent| is the intent payload to be dispatched.
- // |reply_callback| is the callback to notify when the intent is replied to.
- InternalWebIntentsDispatcher(
- const webkit_glue::WebIntentData& intent,
- const ReplyCallback& reply_callback);
-
- virtual ~InternalWebIntentsDispatcher();
-
- // WebIntentsDispatcher implementation.
- virtual const webkit_glue::WebIntentData& GetIntent() OVERRIDE;
- virtual void DispatchIntent(WebContents* destination_contents) OVERRIDE;
- virtual void ResetDispatch() OVERRIDE;
- virtual void SendReply(const webkit_glue::WebIntentReply& reply) OVERRIDE;
- virtual void RegisterReplyNotification(
- const WebIntentsDispatcher::ReplyNotification& closure) OVERRIDE;
-
- private:
- FRIEND_TEST_ALL_PREFIXES(InternalWebIntentsDispatcherTest,
- CancelAbandonsInjector);
- // The intent data to be delivered.
- webkit_glue::WebIntentData intent_;
-
- // Weak pointer to the internal object which delivers the intent to the
- // newly-created service WebContents. This object is self-deleting
- // (connected to the service WebContents).
- IntentInjector* intent_injector_;
-
- // Callbacks to be notified when SendReplyMessage is called.
- std::vector<WebIntentsDispatcher::ReplyNotification> reply_notifiers_;
-
- // Callback to be invoked when the intent is replied to.
- ReplyCallback reply_callback_;
-
- DISALLOW_COPY_AND_ASSIGN(InternalWebIntentsDispatcher);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_INTENTS_INTERNAL_WEB_INTENTS_DISPATCHER_H_
« no previous file with comments | « content/browser/intents/intent_injector_unittest.cc ('k') | content/browser/intents/internal_web_intents_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698