OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_UTILS_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_UTILS_H_ |
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_UTILS_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_UTILS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/gfx/native_widget_types.h" | 11 #include "app/gfx/native_widget_types.h" |
12 #include "chrome/browser/bookmarks/bookmark_drag_data.h" | 12 #include "chrome/browser/bookmarks/bookmark_drag_data.h" |
13 #include "chrome/browser/bookmarks/bookmark_editor.h" | 13 #include "chrome/browser/bookmarks/bookmark_editor.h" |
14 #include "chrome/browser/history/snippet.h" | 14 #include "chrome/browser/history/snippet.h" |
15 #include "webkit/glue/window_open_disposition.h" | 15 #include "webkit/glue/window_open_disposition.h" |
16 | 16 |
17 class BookmarkModel; | 17 class BookmarkModel; |
18 class BookmarkNode; | 18 class BookmarkNode; |
19 class Browser; | 19 class Browser; |
20 class PageNavigator; | 20 class PageNavigator; |
21 class PrefService; | 21 class PrefService; |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 // Number of bookmarks we'll open before prompting the user to see if they | 194 // Number of bookmarks we'll open before prompting the user to see if they |
195 // really want to open all. | 195 // really want to open all. |
196 // | 196 // |
197 // NOTE: treat this as a const. It is not const as various tests change the | 197 // NOTE: treat this as a const. It is not const as various tests change the |
198 // value. | 198 // value. |
199 extern int num_urls_before_prompting; | 199 extern int num_urls_before_prompting; |
200 | 200 |
201 } // namespace bookmark_utils | 201 } // namespace bookmark_utils |
202 | 202 |
203 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_UTILS_H_ | 203 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_UTILS_H_ |
OLD | NEW |