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

Side by Side Diff: chrome/browser/bookmarks/bookmark_drag_data.h

Issue 3027041: Remove obviously unneeded forward declarations in chrome/browser/[abef]*/*.h. (Closed)
Patch Set: oops, missed one previously Created 10 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
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_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/file_path.h" 12 #include "base/file_path.h"
13 #include "base/string16.h" 13 #include "base/string16.h"
14 #include "googleurl/src/gurl.h" 14 #include "googleurl/src/gurl.h"
15 15
16 #if defined(TOOLKIT_VIEWS) 16 #if defined(TOOLKIT_VIEWS)
17 #include "app/os_exchange_data.h" 17 #include "app/os_exchange_data.h"
18 #endif 18 #endif
19 19
20 class BookmarkModel;
21 class BookmarkNode; 20 class BookmarkNode;
22 class Pickle; 21 class Pickle;
23 class Profile; 22 class Profile;
24 23
25 // TODO(mrossetti): Rename BookmarkDragData to BookmarkNodeData, update comment. 24 // TODO(mrossetti): Rename BookmarkDragData to BookmarkNodeData, update comment.
26 // See: http://crbug.com/37891 25 // See: http://crbug.com/37891
27 26
28 // BookmarkDragData is used to represent the following: 27 // BookmarkDragData is used to represent the following:
29 // 28 //
30 // . A single URL. 29 // . A single URL.
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 static const char* kClipboardFormatString; 159 static const char* kClipboardFormatString;
161 160
162 static bool ClipboardContainsBookmarks(); 161 static bool ClipboardContainsBookmarks();
163 162
164 private: 163 private:
165 // Path of the profile we originated from. 164 // Path of the profile we originated from.
166 FilePath::StringType profile_path_; 165 FilePath::StringType profile_path_;
167 }; 166 };
168 167
169 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_ 168 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698