blob: 011f4ae2647e5c4870ce6eeff650a72b559f2f88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// 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_WEB_INTENTS_DISPATCHER_IMPL_H_
#define CONTENT_BROWSER_INTENTS_WEB_INTENTS_DISPATCHER_IMPL_H_
#include <vector>
#include "base/callback.h"
#include "base/compiler_specific.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_intents_dispatcher.h"
#include "webkit/glue/web_intent_data.h"
class IntentInjector;
// Implements the coordinator object interface for Web Intents.
// Observes the source (client) contents to make sure messages sent back by the
// service can be delivered. Keeps a copy of triggering intent data to
// be delivered to the service and serves as a forwarder for sending reply
// messages back to the client page.
class WebIntentsDispatcherImpl : public content::WebIntentsDispatcher,
public content::WebContentsObserver {
public:
// |source_contents| is the page which triggered the web intent.
// |intent| is the intent payload created by that page.
// |intent_id| is the identifier assigned by WebKit to direct replies back to
// the correct Javascript callback.
WebIntentsDispatcherImpl(content::WebContents* source_contents,
const webkit_glue::WebIntentData& intent,
int intent_id);
virtual ~WebIntentsDispatcherImpl();
// WebIntentsDispatcher implementation.
virtual const webkit_glue::WebIntentData& GetIntent() OVERRIDE;
virtual void DispatchIntent(
content::WebContents* destination_contents) OVERRIDE;
virtual void ResetDispatch() OVERRIDE;
virtual void SendReplyMessage(webkit_glue::WebIntentReplyType reply_type,
const string16& data) OVERRIDE;
virtual void RegisterReplyNotification(
const content::WebIntentsDispatcher::ReplyNotification& closure) OVERRIDE;
// content::WebContentsObserver implementation.
virtual void WebContentsDestroyed(content::WebContents* contents) OVERRIDE;
private:
webkit_glue::WebIntentData intent_;
int intent_id_;
// Weak pointer to the internal object which provides 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<content::WebIntentsDispatcher::ReplyNotification>
reply_notifiers_;
DISALLOW_COPY_AND_ASSIGN(WebIntentsDispatcherImpl);
};
#endif // CONTENT_BROWSER_INTENTS_WEB_INTENTS_DISPATCHER_IMPL_H_
|