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

Unified Diff: chrome/browser/ui/views/validation_message_bubble_view.h

Issue 867323005: MacViews: Fix duplicate definition of ValidationMessageBubble::ShowAndCreate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@FirstResponder
Patch Set: Created 5 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/views/validation_message_bubble_view.h
diff --git a/chrome/browser/ui/views/validation_message_bubble_view.h b/chrome/browser/ui/views/validation_message_bubble_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..a45f3c7d6e6e01afff6429aa4400203f4fe44b42
--- /dev/null
+++ b/chrome/browser/ui/views/validation_message_bubble_view.h
@@ -0,0 +1,40 @@
+// Copyright 2015 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_VIEWS_VALIDATION_MESSAGE_BUBBLE_VIEW_H_
+#define CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_VIEW_H_
+
+#include "chrome/browser/ui/validation_message_bubble.h"
+#include "chrome/browser/ui/views/validation_message_bubble_delegate.h"
+
+namespace content {
+class WebContents;
+}
+
+// A ValidationMessageBubble implementation for Views.
+class ValidationMessageBubbleView
+ : public ValidationMessageBubble,
+ public ValidationMessageBubbleDelegate::Observer {
+ public:
+ ValidationMessageBubbleView(content::WebContents* web_contents,
+ const gfx::Rect& anchor_in_root_view,
+ const base::string16& main_text,
+ const base::string16& sub_text);
+ ~ValidationMessageBubbleView() override;
+
+ // ValidationMessageBubble overrides:
+ void SetPositionRelativeToAnchor(
+ content::RenderWidgetHost* widget_host,
+ const gfx::Rect& anchor_in_root_view) override;
+
+ // ValidationMessageBubbleDelegate::Observer overrides:
+ void WindowClosing() override;
+
+ private:
+ ValidationMessageBubbleDelegate* delegate_;
+
+ DISALLOW_COPY_AND_ASSIGN(ValidationMessageBubbleView);
+};
+
+#endif // CHROME_BROWSER_UI_VIEWS_VALIDATION_MESSAGE_BUBBLE_VIEW_H_
« no previous file with comments | « chrome/browser/ui/views/tab_dialogs_views.cc ('k') | chrome/browser/ui/views/validation_message_bubble_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698