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

Unified Diff: chrome/browser/autofill/credit_card.cc

Issue 6775005: iwyu: Cleanup in the following files: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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/autofill/credit_card.cc
diff --git a/chrome/browser/autofill/credit_card.cc b/chrome/browser/autofill/credit_card.cc
index ed91ae3ee462e51429d91929249f19a9bc0c71f5..94b4eb0970d472915b2a1795d1a37c4fa8182164 100644
--- a/chrome/browser/autofill/credit_card.cc
+++ b/chrome/browser/autofill/credit_card.cc
@@ -4,9 +4,11 @@
#include "chrome/browser/autofill/credit_card.h"
+#include <stddef.h>
#include <string>
#include "base/basictypes.h"
+#include "base/logging.h"
#include "base/string16.h"
#include "base/string_number_conversions.h"
#include "base/string_split.h"
@@ -18,6 +20,7 @@
#include "grit/generated_resources.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebRegularExpression.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCaseSensitivity.h"
dhollowa 2011/03/29 21:36:42 Strange that this is needed now but not before.
James Hawkins 2011/03/29 22:42:06 WebKit::WebTextCaseInsensitive is used on line 340
#include "ui/base/l10n/l10n_util.h"
namespace {

Powered by Google App Engine
This is Rietveld 408576698