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

Side by Side Diff: content/public/browser/download_manager_delegate.cc

Issue 9651020: Pass content-type resources to web intents. Goes through download, then invokes the p… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move dispatch logic client-side. Created 8 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 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 #include "content/public/browser/download_manager_delegate.h" 5 #include "content/public/browser/download_manager_delegate.h"
6 6
7 #include "content/public/browser/download_id.h" 7 #include "content/public/browser/download_id.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 17 matching lines...) Expand all
28 28
29 bool DownloadManagerDelegate::ShouldOpenFileBasedOnExtension( 29 bool DownloadManagerDelegate::ShouldOpenFileBasedOnExtension(
30 const FilePath& path) { 30 const FilePath& path) {
31 return false; 31 return false;
32 } 32 }
33 33
34 bool DownloadManagerDelegate::ShouldCompleteDownload(DownloadItem* item) { 34 bool DownloadManagerDelegate::ShouldCompleteDownload(DownloadItem* item) {
35 return true; 35 return true;
36 } 36 }
37 37
38 bool DownloadManagerDelegate::ShouldOpenWithWebIntent(DownloadItem* item) {
39 return false;
40 }
41
38 bool DownloadManagerDelegate::ShouldOpenDownload(DownloadItem* item) { 42 bool DownloadManagerDelegate::ShouldOpenDownload(DownloadItem* item) {
39 return true; 43 return true;
40 } 44 }
41 45
42 bool DownloadManagerDelegate::GenerateFileHash() { 46 bool DownloadManagerDelegate::GenerateFileHash() {
43 return false; 47 return false;
44 } 48 }
45 49
46 } // namespace content 50 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698