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

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

Issue 9148032: [Web Intents] Refactor picker to use WebIntentPickerModel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix copyright year in w_i_b_c_unittest.mm Created 8 years, 11 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: chrome/browser/ui/cocoa/web_intent_bubble_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/web_intent_bubble_controller_unittest.mm b/chrome/browser/ui/cocoa/web_intent_bubble_controller_unittest.mm
index bb0e0e7ef12b7e73dd80e1e018c76ba3d54b2797..ecc9be182a133a6b49c30b85eb6aea6cc8f881df 100644
--- a/chrome/browser/ui/cocoa/web_intent_bubble_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/web_intent_bubble_controller_unittest.mm
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// 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.
@@ -14,7 +14,9 @@ namespace {
class FakeIntentPickerDelegate : public WebIntentPickerDelegate {
public:
virtual ~FakeIntentPickerDelegate() {}
- virtual void OnServiceChosen(size_t index) {};
+ virtual void OnServiceChosen(size_t index, Disposition disposition) {};
sail 2012/01/27 18:43:59 could you add OVERRIDE on all these virtual functi
binji 2012/01/27 19:04:20 Done.
+ virtual void OnInlineDispositionWebContentsCreated(
+ content::WebContents* web_contents) {}
// Callback called when the user cancels out of the dialog.
virtual void OnCancelled() {};

Powered by Google App Engine
This is Rietveld 408576698