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

Side by Side Diff: chrome/browser/autofill/autofill_feedback_infobar_delegate.h

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_FEEDBACK_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_FEEDBACK_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_FEEDBACK_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_FEEDBACK_INFOBAR_DELEGATE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
11 #include "chrome/browser/tab_contents/link_infobar_delegate.h" 11 #include "chrome/browser/tab_contents/link_infobar_delegate.h"
12 #include "webkit/glue/window_open_disposition.h" 12 #include "webkit/glue/window_open_disposition.h"
13 13
14 class NotificationType;
15 class TabContents; 14 class TabContents;
16 15
17 // An InfoBar delegate that prompts the user to provide additional feedback for 16 // An InfoBar delegate that prompts the user to provide additional feedback for
18 // the Autofill developers. 17 // the Autofill developers.
19 class AutofillFeedbackInfoBarDelegate : public LinkInfoBarDelegate { 18 class AutofillFeedbackInfoBarDelegate : public LinkInfoBarDelegate {
20 public: 19 public:
21 AutofillFeedbackInfoBarDelegate(TabContents* tab_contents, 20 AutofillFeedbackInfoBarDelegate(TabContents* tab_contents,
22 const string16& message, 21 const string16& message,
23 const string16& link_text, 22 const string16& link_text,
24 const std::string& feedback_message); 23 const std::string& feedback_message);
(...skipping 15 matching lines...) Expand all
40 // The default feedback message, which can be edited by the user prior to 39 // The default feedback message, which can be edited by the user prior to
41 // submission. 40 // submission.
42 const std::string feedback_message_; 41 const std::string feedback_message_;
43 42
44 bool link_clicked_; 43 bool link_clicked_;
45 44
46 DISALLOW_COPY_AND_ASSIGN(AutofillFeedbackInfoBarDelegate); 45 DISALLOW_COPY_AND_ASSIGN(AutofillFeedbackInfoBarDelegate);
47 }; 46 };
48 47
49 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_FEEDBACK_INFOBAR_DELEGATE_H_ 48 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_FEEDBACK_INFOBAR_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/autofill/autofill_browsertest.cc ('k') | chrome/browser/autofill/autofill_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698