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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_types.h

Issue 98693017: Some nits I found while looking around rAc() code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 12 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/autofill/autofill_dialog_types.h
diff --git a/chrome/browser/ui/autofill/autofill_dialog_types.h b/chrome/browser/ui/autofill/autofill_dialog_types.h
index 9c96b8bb97347df4c4482a3ccde74dc1b62e8dd2..be794a0818866b45da2cbe267c104f98c8be4238 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_types.h
+++ b/chrome/browser/ui/autofill/autofill_dialog_types.h
@@ -8,6 +8,10 @@
#include <map>
#include <vector>
+#ifndef NDEBUG
+#include <ostream>
+#endif
+
#include "base/callback_forward.h"
#include "base/strings/string16.h"
#include "base/time/time.h"
@@ -72,6 +76,10 @@ enum DialogSection {
SECTION_MAX = SECTION_SHIPPING
};
+#ifndef NDEBUG
groby-ooo-7-16 2014/01/04 01:05:45 All other instances of operator<< that a random sa
+std::ostream& operator<<(std::ostream& out, DialogSection section);
+#endif
+
// A notification to show in the autofill dialog. Ranges from information to
// seriously scary security messages, and will give you the color it should be
// displayed (if you ask it).

Powered by Google App Engine
This is Rietveld 408576698