HomeSort by relevance Sort by last modified time
    Searched refs:download (Results 51 - 75 of 343) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/download/
download_shelf.h 31 // This is an abstract base class for platform specific download shelf
35 // Reason for closing download shelf.
38 // shelf have been opened, last download in shelf was removed, or the
43 // 'close' button on the download shelf, or the shelf is being closed as a
53 // Download progress animations ----------------------------------------------
85 // Load a language dependent height so that the dangerous download
86 // confirmation message doesn't overlap with the download link label.
92 // Paint the common download animation progress foreground and background,
138 // A new download has started. Add it to our shelf and show the download
    [all...]
download_path_reservation_tracker.cc 5 #include "chrome/browser/download/download_path_reservation_tracker.h"
40 // Map of download path reservations. Each reserved path is associated with a
50 // revokes associated download path reservations as necessary. Created, invoked
60 virtual void OnDownloadUpdated(DownloadItem* download) OVERRIDE;
61 virtual void OnDownloadDestroyed(DownloadItem* download) OVERRIDE;
65 // Last known target path for the download.
144 // Called on the FILE thread to reserve a download path. This method:
291 void DownloadItemObserver::OnDownloadUpdated(DownloadItem* download) {
292 switch (download->GetState()) {
295 base::FilePath new_target_path = download->GetTargetFilePath()
    [all...]
test_download_shelf.h 11 #include "chrome/browser/download/download_shelf.h"
26 // Return |true| if a download was added to this shelf.
36 virtual void DoAddDownload(content::DownloadItem* download) OVERRIDE;
download_target_determiner.h 13 #include "chrome/browser/download/download_path_reservation_tracker.h"
14 #include "chrome/browser/download/download_target_determiner_delegate.h"
15 #include "chrome/browser/download/download_target_info.h"
28 // Determines the target of the download.
31 // Virtual Path: A path representing the target of the download that may or
32 // may not be a physical file path. E.g. if the target of the download is in
40 // the download. Once the download completes, the file could be renamed to
44 // determining the download target. It observes the DownloadItem and aborts the
45 // process if the download is removed. DownloadTargetDeterminerDelegate i
    [all...]
test_download_shelf.cc 5 #include "chrome/browser/download/test_download_shelf.h"
46 void TestDownloadShelf::DoAddDownload(content::DownloadItem* download) {
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
UrlImageBinder.java 41 imageDownloader.download(url, (ImageView) view);
  /external/chromium/chrome/browser/download/
download_item_model.cc 5 #include "chrome/browser/download/download_item_model.h"
11 #include "chrome/browser/download/download_item.h"
12 #include "chrome/browser/download/save_package.h"
22 DownloadItemModel::DownloadItemModel(DownloadItem* download)
23 : BaseDownloadItemModel(download) {
102 SavePageModel::SavePageModel(SavePackage* save, DownloadItem* download)
103 : BaseDownloadItemModel(download),
download_manager_unittest.cc 13 #include "chrome/browser/download/download_file.h"
14 #include "chrome/browser/download/download_file_manager.h"
15 #include "chrome/browser/download/download_item.h"
16 #include "chrome/browser/download/download_manager.h"
17 #include "chrome/browser/download/download_prefs.h"
18 #include "chrome/browser/download/download_status_updater.h"
19 #include "chrome/browser/download/download_util.h"
20 #include "chrome/browser/download/mock_download_manager.h"
72 // Get the download item with ID |id|.
96 // Make sure download item |id| was set with correct safety state fo
424 DownloadItem* download = GetActiveDownloadItem(0); local
490 DownloadItem* download = GetActiveDownloadItem(0); local
557 DownloadItem* download = GetActiveDownloadItem(0); local
    [all...]
drag_download_file.h 11 #include "chrome/browser/download/download_file.h"
12 #include "chrome/browser/download/download_item.h"
13 #include "chrome/browser/download/download_manager.h"
27 // On Windows, we need to download into a temporary file. Two threads are
32 // On MacOSX, we need to download into a file stream that has already been
58 virtual void OnDownloadUpdated(DownloadItem* download);
59 virtual void OnDownloadOpened(DownloadItem* download) { }
drag_download_file.cc 5 #include "chrome/browser/download/drag_download_file.h"
9 #include "chrome/browser/download/download_file.h"
10 #include "chrome/browser/download/download_item.h"
11 #include "chrome/browser/download/download_util.h"
72 // Create a temporary directory to save the temporary download file. We do
73 // not want to use the default download directory since we do not want the
74 // twisted file name shown in the download shelf if the file with the same
85 // On Windows, we need to wait till the download file is completed.
168 void DragDownloadFile::OnDownloadUpdated(DownloadItem* download) {
170 if (download->IsCancelled())
    [all...]
download_util.h 5 // Download utilities.
45 // Download temporary file creation --------------------------------------------
47 // Return the default download directory.
50 // Create a temporary file for a download in the user's default download
74 // download. |file_name| can either be just the file name or it can be a
83 // Download progress animations ------------------------------------------------
122 // histogram "Download.Counts".
124 // The download was initiated by navigating to a URL (e.g. by user
128 // The download was initiated by invoking a context menu within a page
    [all...]
download_shelf.h 18 // DownloadShelf is an interface for platform-specific download shelf views.
23 // A new download has started, so add it to our shelf. This object will
33 // Returns whether the download shelf is showing the close animation.
45 // Logic for the download shelf context menu. Platform specific subclasses are
51 virtual DownloadItem* download() const;
55 OPEN_WHEN_COMPLETE, // Open the download when it's finished.
57 CANCEL, // Cancel the download.
58 TOGGLE_PAUSE, // Temporarily pause a download.
83 // We show slightly different menus if the download is in progress vs. if the
84 // download has finished
    [all...]
  /external/chromium_org/content/public/browser/
download_item.h 5 // Each download is represented by a DownloadItem, and all DownloadItems
7 // downloads. DownloadItems are created when a user initiates a download,
10 // Download observers:
12 // - allows observers to receive notifications about one download from start
14 // Use AddObserver() / RemoveObserver() on the appropriate download object to
46 // One DownloadItem per download. This is the model class that stores all the
47 // state for a download. Multiple views, such as a tab's download shelf and the
48 // Destination tab's download view, may refer to a given DownloadItem.
54 // Download is actively progressing
    [all...]
  /external/chromium_org/content/shell/browser/
shell_download_manager_delegate.cc 54 DownloadItem* download,
64 if (!download->GetForcedFilePath().empty()) {
65 callback.Run(download->GetForcedFilePath(),
68 download->GetForcedFilePath());
73 download->GetURL(),
74 download->GetContentDisposition(),
76 download->GetSuggestedFilename(),
77 download->GetMimeType(),
78 "download");
85 this, download->GetId(), callback, generated_name
    [all...]
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_link.h 57 phDal4Nfc_link_download_CB_t download; member in struct:__anon20951
  /external/chromium/chrome/browser/resources/options/
advanced_options.css 25 #download-location-group {
  /external/chromium/chrome/browser/ui/cocoa/download/
download_shelf_controller.h 22 // A controller class that manages the download shelf for one window. It is
24 // the link, layout) as well as for managing the download items it contains.
65 // The download items we have added to our shelf.
68 // The container that contains (and clamps) all the download items.
93 // Remove a download, possibly via clearing browser data.
94 - (void)remove:(DownloadItemController*)download;
97 - (void)downloadWasOpened:(DownloadItemController*)download;
102 // Return the height of the download shelf.
105 // Re-layouts all download items based on their current state.
  /external/chromium/chrome/browser/ui/webui/
downloads_dom_handler.cc 18 #include "chrome/browser/download/download_history.h"
19 #include "chrome/browser/download/download_item.h"
20 #include "chrome/browser/download/download_util.h"
97 void DownloadsDOMHandler::OnDownloadUpdated(DownloadItem* download) {
98 // Get the id for the download. Our downloads are sorted latest to first,
104 download);
110 results_value.Append(download_util::CreateDownloadItemValue(download, id));
114 // A download has started or been deleted. Query our DownloadManager for the
128 DownloadItem* download = *it; local
129 if (download->IsInProgress())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.idl 24 [Reflect] attribute DOMString download;
  /external/chromium_org/tools/valgrind/
waterfall.sh 18 download() { function
19 # Download a file.
20 # $1 = URL to download
28 echo "Failed to download '$1'... aborting"
36 echo "Failed to download '$1'... aborting"
40 echo "Need either curl or wget to download stuff... aborting"
56 download $1 "$LOGS_DIR/builders"
67 download $SLAVE_URL?numbuilds=${NUMBUILDS} "$LOGS_DIR/slave_${S}"
95 download $SLAVE_URL/builds/$BUILD "$TMPFILE"
109 download "$SLAVE_URL/builds/$REPORT/text" "$TMPFILE
    [all...]
  /external/chromium_org/sync/engine/
download_unittest.cc 5 #include "sync/engine/download.h"
25 // A test fixture for tests exercising download updates functions.
98 download::BuildNormalDownloadUpdatesImpl(proto_request_types(),
146 download::BuildNormalDownloadUpdatesImpl(proto_request_types(),
179 download::BuildDownloadUpdatesForConfigureImpl(
202 download::BuildDownloadUpdatesForPollImpl(
232 SyncerError error = download::ProcessResponse(gu_response,
246 SyncerError error = download::ProcessResponse(gu_response,
253 // A simple scenario: No updates returned and nothing more to download.
260 SyncerError error = download::ProcessResponse(gu_response
    [all...]
  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 76 * Called when a download has been updated or added.
77 * @param {Object} download A backend download object (see downloads_ui.cc)
79 Downloads.prototype.updated = function(download) {
80 var id = download.id;
82 this.downloads_[id].update(download);
84 this.downloads_[id] = new Download(download);
89 if (download.started > this.newestTime_) {
91 this.newestTime_ = download.started
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/download/
download_shelf_gtk.cc 5 #include "chrome/browser/ui/gtk/download/download_shelf_gtk.h"
11 #include "chrome/browser/download/download_item_model.h"
12 #include "chrome/browser/download/download_stats.h"
18 #include "chrome/browser/ui/gtk/download/download_item_gtk.h"
41 // The height of the download items.
44 // Padding between the download widgets.
47 // Padding between the top/bottom of the download widgets and the edge of the
51 // Padding between the left side of the shelf and the first download item.
60 // The time between when the user mouses out of the download shelf zone and
80 // the download items and other shelf widgets (close button, show-all
229 DownloadItem* download = download_items_[i]->download(); local
    [all...]
  /external/chromium/chrome/browser/ui/views/download/
download_item_view.h 5 // A ChromeView that implements one download on the Download shelf.
7 // indicating the download's file name, a text label indicating the
8 // download's status (such as the number of bytes downloaded so far)
9 // and a button for canceling an in progress download, or opening
10 // the completed download.
26 #include "chrome/browser/download/download_item.h"
27 #include "chrome/browser/download/download_manager.h"
59 DownloadItemView(DownloadItem* download,
73 DownloadItem* download() const { return download_; function in class:DownloadItemView
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
imageburner_ui.h 21 #include "chrome/browser/download/download_item.h"
22 #include "chrome/browser/download/download_manager.h"
23 #include "chrome/browser/download/download_util.h"
41 // After download starts download status updates can be followed through
58 // Creates file stream for a download.
63 // Gets called after file stream is created and starts download.
68 // Adds an item to list of listeners that wait for confirmation that download
76 // Let listeners know if download started successfully.
101 virtual void OnDownloadUpdated(DownloadItem* download) OVERRIDE
    [all...]

Completed in 849 milliseconds

1 23 4 5 6 7 8 91011>>