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

Side by Side Diff: chrome/browser/ui/cocoa/tab_contents/web_contents_drag_source.h

Issue 6358008: [Mac] Organize some files into chrome/browser/ui/cocoa/tab_contents/.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_UI_COCOA_WEB_CONTENTS_DRAG_SOURCE_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_WEB_CONTENTS_DRAG_SOURCE_H_
6 #define CHROME_BROWSER_UI_COCOA_WEB_CONTENTS_DRAG_SOURCE_H_ 6 #define CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_WEB_CONTENTS_DRAG_SOURCE_H_
7 #pragma once 7 #pragma once
8 8
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
11 #include "base/scoped_nsobject.h" 11 #include "base/scoped_nsobject.h"
12 #include "chrome/browser/bookmarks/bookmark_node_data.h" 12 #include "chrome/browser/bookmarks/bookmark_node_data.h"
13 13
14 @class TabContentsViewCocoa; 14 @class TabContentsViewCocoa;
15 15
16 // A class that handles tracking and event processing for a drag and drop 16 // A class that handles tracking and event processing for a drag and drop
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 // End the drag and clear the pasteboard; hook up to 52 // End the drag and clear the pasteboard; hook up to
53 // -draggedImage:endedAt:operation:. 53 // -draggedImage:endedAt:operation:.
54 - (void)endDragAt:(NSPoint)screenPoint 54 - (void)endDragAt:(NSPoint)screenPoint
55 operation:(NSDragOperation)operation; 55 operation:(NSDragOperation)operation;
56 56
57 // Drag moved; hook up to -draggedImage:movedTo:. 57 // Drag moved; hook up to -draggedImage:movedTo:.
58 - (void)moveDragTo:(NSPoint)screenPoint; 58 - (void)moveDragTo:(NSPoint)screenPoint;
59 59
60 @end 60 @end
61 61
62 #endif // CHROME_BROWSER_UI_COCOA_WEB_CONTENTS_DRAG_SOURCE_H_ 62 #endif // CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_WEB_CONTENTS_DRAG_SOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698