diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-30 00:21:52 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-30 00:21:52 +0000 |
commit | aa22af6dc85d5c002ff4f8a870e79c3a9c903008 (patch) | |
tree | 1f204d0026b5e57f2f94bd154b67c754614f20c8 /chrome/browser/ui/confirm_bubble_model.h | |
parent | c178cb1749d4488628caf1e1bac6d17878d20fc2 (diff) | |
download | chromium_src-aa22af6dc85d5c002ff4f8a870e79c3a9c903008.zip chromium_src-aa22af6dc85d5c002ff4f8a870e79c3a9c903008.tar.gz chromium_src-aa22af6dc85d5c002ff4f8a870e79c3a9c903008.tar.bz2 |
browser: Fix confirm_bubble_* platform-specific filenames.
And while I'm here rename the classes to match with the filenames and also extract the Show function from ConfirmBubbleModel into browser namespace.
R=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10446045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/confirm_bubble_model.h')
-rw-r--r-- | chrome/browser/ui/confirm_bubble_model.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/chrome/browser/ui/confirm_bubble_model.h b/chrome/browser/ui/confirm_bubble_model.h index 4253c38..a7f3001 100644 --- a/chrome/browser/ui/confirm_bubble_model.h +++ b/chrome/browser/ui/confirm_bubble_model.h @@ -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. @@ -8,17 +8,15 @@ #include "base/basictypes.h" #include "base/string16.h" -#include "ui/gfx/native_widget_types.h" namespace gfx { class Image; -class Point; } // An interface implemented by objects wishing to control an ConfirmBubbleView. // To use this class to implement a bubble menu, we need two steps: // 1. Implement a class derived from this class. -// 2. Call ConfirmBubbleModel::Show() with the class implemented in 1. +// 2. Call browser::ShowConfirmBubble() with the class implemented in 1. class ConfirmBubbleModel { public: enum BubbleButton { @@ -63,13 +61,6 @@ class ConfirmBubbleModel { // Called when the Link is clicked. virtual void LinkClicked(); - // Creates a bubble and shows it with its top center at the specified - // |origin|. A bubble created by this function takes ownership of the - // specified |model|. - static void Show(gfx::NativeView view, - const gfx::Point& origin, - ConfirmBubbleModel* model); - private: DISALLOW_COPY_AND_ASSIGN(ConfirmBubbleModel); }; |