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

Side by Side Diff: chrome/common/temp_scaffolding_stubs.cc

Issue 164459: Implement drag and drop of downloads for the Mac downloads page (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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
« no previous file with comments | « chrome/common/temp_scaffolding_stubs.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "chrome/common/temp_scaffolding_stubs.h" 5 #include "chrome/common/temp_scaffolding_stubs.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 }; 252 };
253 253
254 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create( 254 DownloadRequestDialogDelegate* DownloadRequestDialogDelegate::Create(
255 TabContents* tab, 255 TabContents* tab,
256 DownloadRequestManager::TabDownloadState* host) { 256 DownloadRequestManager::TabDownloadState* host) {
257 NOTIMPLEMENTED(); 257 NOTIMPLEMENTED();
258 return new DownloadRequestDialogDelegateStub(host); 258 return new DownloadRequestDialogDelegateStub(host);
259 } 259 }
260 #endif 260 #endif
261 261
262 #if !defined(TOOLKIT_VIEWS) 262 #if !defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX)
263 namespace download_util { 263 namespace download_util {
264 264
265 void DragDownload(const DownloadItem* download, SkBitmap* icon) { 265 void DragDownload(const DownloadItem* download,
266 SkBitmap* icon,
267 gfx::NativeView view) {
266 NOTIMPLEMENTED(); 268 NOTIMPLEMENTED();
267 } 269 }
268 270
269 } // namespace download_util 271 } // namespace download_util
270 #endif 272 #endif
271 273
272 #if !defined(TOOLKIT_VIEWS) 274 #if !defined(TOOLKIT_VIEWS)
273 void BrowserList::AllBrowsersClosed() { 275 void BrowserList::AllBrowsersClosed() {
274 // TODO(port): Close any dependent windows if necessary when the last browser 276 // TODO(port): Close any dependent windows if necessary when the last browser
275 // window is closed. 277 // window is closed.
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 Handler* handler) { 409 Handler* handler) {
408 NOTIMPLEMENTED(); 410 NOTIMPLEMENTED();
409 } 411 }
410 412
411 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) { 413 void BookmarkManager::SelectInTree(Profile* profile, const BookmarkNode* node) {
412 } 414 }
413 void BookmarkManager::Show(Profile* profile) { 415 void BookmarkManager::Show(Profile* profile) {
414 } 416 }
415 417
416 #endif 418 #endif
OLDNEW
« no previous file with comments | « chrome/common/temp_scaffolding_stubs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698