diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 12:34:21 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 12:34:21 +0000 |
commit | 9297259fa3a04001d23ce1648b4d4c96d4848756 (patch) | |
tree | fe43665ca47f21840c582fa1182e69ebeabf9cec | |
parent | 1c61b1f52469c2eca1812190279b03973959e6f8 (diff) | |
download | chromium_src-9297259fa3a04001d23ce1648b4d4c96d4848756.zip chromium_src-9297259fa3a04001d23ce1648b4d4c96d4848756.tar.gz chromium_src-9297259fa3a04001d23ce1648b4d4c96d4848756.tar.bz2 |
Compile fix for gcc 4.6 (WebDataService::Handle is typedef of int).
TBR=timsteele@chromium.org
BUG=none
Review URL: http://codereview.chromium.org/8919015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114211 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/sync/profile_sync_service_autofill_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc index c172556..1ec4cee 100644 --- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc +++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc @@ -194,7 +194,7 @@ class WebDataServiceFake : public WebDataService { // initialization (which seems way more fragile) we can't tell which // component is asking at what time, and some components in these Autofill // tests require a WebDataService. - return NULL; + return 0; } virtual AutocompleteSyncableService* |