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

Unified Diff: chrome/browser/ui/cocoa/handoff_active_url_observer_bridge.mm

Issue 794853004: Reland 1: "mac: Allow Chrome to hand off its active URL to other devices." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from avi. Created 6 years 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: chrome/browser/ui/cocoa/handoff_active_url_observer_bridge.mm
diff --git a/chrome/browser/ui/cocoa/handoff_active_url_observer_bridge.mm b/chrome/browser/ui/cocoa/handoff_active_url_observer_bridge.mm
new file mode 100644
index 0000000000000000000000000000000000000000..639ae937829381351afa3bd8a2e9fc5ed0cff0f7
--- /dev/null
+++ b/chrome/browser/ui/cocoa/handoff_active_url_observer_bridge.mm
@@ -0,0 +1,21 @@
+// 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.
+
+#include "chrome/browser/ui/cocoa/handoff_active_url_observer_bridge.h"
+
+#include "chrome/browser/ui/cocoa/handoff_active_url_observer.h"
+
+HandoffActiveURLObserverBridge::HandoffActiveURLObserverBridge(
+ NSObject<HandoffActiveURLObserverBridgeDelegate>* delegate)
+ : delegate_(delegate) {
+ DCHECK(delegate_);
+ observer_.reset(new HandoffActiveURLObserver(this));
+}
+
+HandoffActiveURLObserverBridge::~HandoffActiveURLObserverBridge(){};
+
+void HandoffActiveURLObserverBridge::HandoffActiveURLChanged(
+ content::WebContents* web_contents) {
+ [delegate_ handoffActiveURLChanged:web_contents];
+}

Powered by Google App Engine
This is Rietveld 408576698