summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/download_file.cc
diff options
context:
space:
mode:
authorpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-22 20:38:33 +0000
committerpinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-22 20:38:33 +0000
commit7e920a366d0e24f17fd10063ea18dbe71eb9d914 (patch)
tree4dd50c80f168d12679de1535a34f31cd19327e27 /chrome/browser/download/download_file.cc
parentd807bf963f1960566263b20de2997bd74ebca1a6 (diff)
downloadchromium_src-7e920a366d0e24f17fd10063ea18dbe71eb9d914.zip
chromium_src-7e920a366d0e24f17fd10063ea18dbe71eb9d914.tar.gz
chromium_src-7e920a366d0e24f17fd10063ea18dbe71eb9d914.tar.bz2
Enable more tests, change a NOTREACHED to a bug since it's not fatal in the download code. Get other tests compiling even if disabled. Mark why tests are failing in gyp file.
Review URL: http://codereview.chromium.org/92033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14239 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/download/download_file.cc')
-rw-r--r--chrome/browser/download/download_file.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/download/download_file.cc b/chrome/browser/download/download_file.cc
index dddac9a..bd10ad7 100644
--- a/chrome/browser/download/download_file.cc
+++ b/chrome/browser/download/download_file.cc
@@ -136,8 +136,7 @@ bool DownloadFile::Open(const char* open_mode) {
// We ignore the return value because a failure is not fatal.
win_util::SetInternetZoneIdentifier(full_path_);
#elif defined(OS_MACOSX)
- // TODO(port) there should be an equivalent on Mac (there isn't on Linux).
- NOTREACHED();
+ // TODO(port): Set quarrantine information, http://crbug.com/10853
#endif
return true;
}