OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "chrome/browser/bookmarks/bookmark_node_data.h" | 13 #include "chrome/browser/bookmarks/bookmark_node_data.h" |
14 #include "chrome/browser/bookmarks/bookmark_editor.h" | 14 #include "chrome/browser/bookmarks/bookmark_editor.h" |
15 #include "chrome/browser/history/snippet.h" | 15 #include "chrome/browser/history/snippet.h" |
16 #include "gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
17 #include "webkit/glue/window_open_disposition.h" | 17 #include "webkit/glue/window_open_disposition.h" |
18 | 18 |
19 class BookmarkModel; | 19 class BookmarkModel; |
20 class BookmarkNode; | 20 class BookmarkNode; |
21 class Browser; | 21 class Browser; |
22 class PageNavigator; | 22 class PageNavigator; |
23 class PrefService; | 23 class PrefService; |
24 class Profile; | 24 class Profile; |
25 class TabContents; | 25 class TabContents; |
26 | 26 |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 // Number of bookmarks we'll open before prompting the user to see if they | 213 // Number of bookmarks we'll open before prompting the user to see if they |
214 // really want to open all. | 214 // really want to open all. |
215 // | 215 // |
216 // NOTE: treat this as a const. It is not const as various tests change the | 216 // NOTE: treat this as a const. It is not const as various tests change the |
217 // value. | 217 // value. |
218 extern int num_urls_before_prompting; | 218 extern int num_urls_before_prompting; |
219 | 219 |
220 } // namespace bookmark_utils | 220 } // namespace bookmark_utils |
221 | 221 |
222 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_UTILS_H_ | 222 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_UTILS_H_ |
OLD | NEW |