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

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: . 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..e5756fc02a9d6eb05ed447c12ff111885c30caca 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,11 +14,14 @@ namespace {
class FakeIntentPickerDelegate : public WebIntentPickerDelegate {
public:
virtual ~FakeIntentPickerDelegate() {}
- virtual void OnServiceChosen(size_t index) {};
+ virtual void OnServiceChosen(
+ size_t index, Disposition disposition) OVERRIDE {};
+ virtual void OnInlineDispositionWebContentsCreated(
+ content::WebContents* web_contents) OVERRIDE {}
// Callback called when the user cancels out of the dialog.
- virtual void OnCancelled() {};
- virtual void OnClosing() {};
+ virtual void OnCancelled() OVERRIDE {};
+ virtual void OnClosing() OVERRIDE {};
};
} // namespace

Powered by Google App Engine
This is Rietveld 408576698