blob: 0d5c52975e0a1de5fa65d8cacb078407c3112cdd (
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
|
// Copyright (c) 2011 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_UI_COCOA_WEB_INTENT_PICKER_COCOA_H_
#define CHROME_BROWSER_UI_COCOA_WEB_INTENT_PICKER_COCOA_H_
#pragma once
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "chrome/browser/ui/intents/web_intent_picker.h"
@class WebIntentBubbleController;
// A bridge class that enables communication between ObjectiveC and C++.
class WebIntentPickerCocoa : public WebIntentPicker {
public:
// |browser| and |delegate| cannot be NULL.
// |wrapper| is unused.
WebIntentPickerCocoa(Browser* browser,
TabContentsWrapper* wrapper,
WebIntentPickerDelegate* delegate);
virtual ~WebIntentPickerCocoa();
// WebIntentPickerDelegate forwarding API.
void OnCancelled();
void OnServiceChosen(size_t index);
void set_controller(WebIntentBubbleController* controller);
// WebIntentPicker:
virtual void SetServiceURLs(const std::vector<GURL>& urls) OVERRIDE;
virtual void SetServiceIcon(size_t index, const SkBitmap& icon) OVERRIDE;
virtual void SetDefaultServiceIcon(size_t index) OVERRIDE;
virtual void Close() OVERRIDE;
virtual content::WebContents* SetInlineDisposition(const GURL& url) OVERRIDE;
private:
// Weak pointer to the |delegate_| to notify about user choice/cancellation.
WebIntentPickerDelegate* delegate_;
WebIntentBubbleController* controller_; // Weak reference.
// Default constructor, for testing only.
WebIntentPickerCocoa()
: delegate_(NULL), controller_(NULL) {}
// For testing access.
friend class WebIntentBubbleControllerTest;
DISALLOW_COPY_AND_ASSIGN(WebIntentPickerCocoa);
};
#endif // CHROME_BROWSER_UI_COCOA_WEB_INTENT_PICKER_COCOA_H_
|