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

Unified Diff: chrome/browser/ui/cocoa/validation_message_bubble_cocoa.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/cocoa/validation_message_bubble_cocoa.h
diff --git a/chrome/browser/ui/cocoa/validation_message_bubble_cocoa.h b/chrome/browser/ui/cocoa/validation_message_bubble_cocoa.h
new file mode 100644
index 0000000000000000000000000000000000000000..6d6f0cacf477c2ee5b85783e742735ad9cfc34aa
--- /dev/null
+++ b/chrome/browser/ui/cocoa/validation_message_bubble_cocoa.h
@@ -0,0 +1,36 @@
+// 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_COCOA_VALIDATION_MESSAGE_BUBBLE_COCOA_H_
+#define CHROME_BROWSER_UI_COCOA_VALIDATION_MESSAGE_BUBBLE_COCOA_H_
+
+#include "base/mac/scoped_nsobject.h"
+#include "chrome/browser/ui/validation_message_bubble.h"
+
+@class ValidationMessageBubbleController;
+
+namespace content {
+class WebContents;
+}
+
+class ValidationMessageBubbleCocoa : public ValidationMessageBubble {
+ public:
+ ValidationMessageBubbleCocoa(content::WebContents* web_contents,
+ const gfx::Rect& anchor_in_root_view,
+ const base::string16& main_text,
+ const base::string16& sub_text);
+ ~ValidationMessageBubbleCocoa() override;
+
+ // ValidationMessageBubble overrides:
+ void SetPositionRelativeToAnchor(
+ content::RenderWidgetHost* widget_host,
+ const gfx::Rect& anchor_in_root_view) override;
+
+ private:
+ base::scoped_nsobject<ValidationMessageBubbleController> controller_;
+
+ DISALLOW_COPY_AND_ASSIGN(ValidationMessageBubbleCocoa);
+};
+
+#endif // CHROME_BROWSER_UI_COCOA_VALIDATION_MESSAGE_BUBBLE_COCOA_H_
« no previous file with comments | « chrome/browser/ui/cocoa/tab_dialogs_cocoa.mm ('k') | chrome/browser/ui/cocoa/validation_message_bubble_cocoa.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698