summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/handoff_active_url_observer_bridge.h
blob: 0d00961d4cc8473074a560f1a5ac89b08b8e24e5 (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
// Copyright 2014 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_HANDOFF_ACTIVE_URL_OBSERVER_BRIDGE_H_
#define CHROME_BROWSER_UI_COCOA_HANDOFF_ACTIVE_URL_OBSERVER_BRIDGE_H_

#import <Cocoa/Cocoa.h>

#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/ui/cocoa/handoff_active_url_observer_delegate.h"

namespace content {
class WebContents;
}

class HandoffActiveURLObserver;

// A protocol that allows ObjC objects to receive delegate callbacks from
// HandoffActiveURLObserver.
@protocol HandoffActiveURLObserverBridgeDelegate
- (void)handoffActiveURLChanged:(content::WebContents*)webContents;
@end

// This class allows an ObjC object to receive the delegate callbacks from an
// HandoffActiveURLObserver.
class HandoffActiveURLObserverBridge : public HandoffActiveURLObserverDelegate {
 public:
  explicit HandoffActiveURLObserverBridge(
      NSObject<HandoffActiveURLObserverBridgeDelegate>* delegate);

  ~HandoffActiveURLObserverBridge() override;

 private:
  void HandoffActiveURLChanged(content::WebContents* web_contents) override;

  // Instances of this class should be owned by their |delegate_|.
  NSObject<HandoffActiveURLObserverBridgeDelegate>* delegate_;

  // The C++ object that this class acts as a bridge for.
  scoped_ptr<HandoffActiveURLObserver> observer_;

  DISALLOW_COPY_AND_ASSIGN(HandoffActiveURLObserverBridge);
};

#endif  // CHROME_BROWSER_UI_COCOA_HANDOFF_ACTIVE_URL_OBSERVER_BRIDGE_H_