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 #include "chrome/browser/bookmarks/bookmark_utils.h" | 5 #include "chrome/browser/bookmarks/bookmark_utils.h" |
6 | 6 |
| 7 #include "app/l10n_util.h" |
7 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
8 #include "base/string_util.h" | 9 #include "base/string_util.h" |
9 #include "base/time.h" | 10 #include "base/time.h" |
10 #include "chrome/browser/bookmarks/bookmark_drag_data.h" | 11 #include "chrome/browser/bookmarks/bookmark_drag_data.h" |
11 #include "chrome/browser/bookmarks/bookmark_model.h" | 12 #include "chrome/browser/bookmarks/bookmark_model.h" |
12 #include "chrome/browser/browser.h" | 13 #include "chrome/browser/browser.h" |
13 #include "chrome/browser/browser_list.h" | 14 #include "chrome/browser/browser_list.h" |
14 #include "chrome/browser/history/query_parser.h" | 15 #include "chrome/browser/history/query_parser.h" |
15 #include "chrome/browser/profile.h" | 16 #include "chrome/browser/profile.h" |
16 #include "chrome/browser/tab_contents/page_navigator.h" | 17 #include "chrome/browser/tab_contents/page_navigator.h" |
17 #include "chrome/browser/tab_contents/tab_contents.h" | 18 #include "chrome/browser/tab_contents/tab_contents.h" |
18 #include "chrome/common/drag_drop_types.h" | 19 #include "chrome/common/drag_drop_types.h" |
19 #include "chrome/common/l10n_util.h" | |
20 #include "chrome/common/notification_service.h" | 20 #include "chrome/common/notification_service.h" |
21 #include "chrome/common/pref_names.h" | 21 #include "chrome/common/pref_names.h" |
22 #include "chrome/common/pref_service.h" | 22 #include "chrome/common/pref_service.h" |
23 #include "chrome/views/controls/tree/tree_node_iterator.h" | 23 #include "chrome/views/controls/tree/tree_node_iterator.h" |
24 #include "chrome/views/event.h" | 24 #include "chrome/views/event.h" |
25 #include "grit/chromium_strings.h" | 25 #include "grit/chromium_strings.h" |
26 #include "grit/generated_resources.h" | 26 #include "grit/generated_resources.h" |
27 | 27 |
28 // TODO(port): Port these files. | 28 // TODO(port): Port these files. |
29 #if defined(OS_WIN) | 29 #if defined(OS_WIN) |
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 | 632 |
633 // Formerly in BookmarkTableView | 633 // Formerly in BookmarkTableView |
634 prefs->RegisterIntegerPref(prefs::kBookmarkTableNameWidth1, -1); | 634 prefs->RegisterIntegerPref(prefs::kBookmarkTableNameWidth1, -1); |
635 prefs->RegisterIntegerPref(prefs::kBookmarkTableURLWidth1, -1); | 635 prefs->RegisterIntegerPref(prefs::kBookmarkTableURLWidth1, -1); |
636 prefs->RegisterIntegerPref(prefs::kBookmarkTableNameWidth2, -1); | 636 prefs->RegisterIntegerPref(prefs::kBookmarkTableNameWidth2, -1); |
637 prefs->RegisterIntegerPref(prefs::kBookmarkTableURLWidth2, -1); | 637 prefs->RegisterIntegerPref(prefs::kBookmarkTableURLWidth2, -1); |
638 prefs->RegisterIntegerPref(prefs::kBookmarkTablePathWidth, -1); | 638 prefs->RegisterIntegerPref(prefs::kBookmarkTablePathWidth, -1); |
639 } | 639 } |
640 | 640 |
641 } // namespace bookmark_utils | 641 } // namespace bookmark_utils |
OLD | NEW |