OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
11 #include "base/i18n/case_conversion.h" | 11 #include "base/i18n/case_conversion.h" |
12 #include "base/i18n/string_search.h" | 12 #include "base/i18n/string_search.h" |
13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
| 14 #include "base/prefs/public/pref_service_base.h" |
14 #include "base/string16.h" | 15 #include "base/string16.h" |
15 #include "base/time.h" | 16 #include "base/time.h" |
16 #include "base/utf_string_conversions.h" | 17 #include "base/utf_string_conversions.h" |
17 #include "chrome/browser/api/prefs/pref_service_base.h" | |
18 #include "chrome/browser/bookmarks/bookmark_model.h" | 18 #include "chrome/browser/bookmarks/bookmark_model.h" |
19 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 19 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
20 #include "chrome/browser/bookmarks/bookmark_node_data.h" | 20 #include "chrome/browser/bookmarks/bookmark_node_data.h" |
21 #include "chrome/browser/history/query_parser.h" | 21 #include "chrome/browser/history/query_parser.h" |
22 #include "chrome/browser/profiles/profile.h" | 22 #include "chrome/browser/profiles/profile.h" |
23 #include "chrome/common/pref_names.h" | 23 #include "chrome/common/pref_names.h" |
24 #include "content/public/browser/user_metrics.h" | 24 #include "content/public/browser/user_metrics.h" |
25 #include "grit/ui_strings.h" | 25 #include "grit/ui_strings.h" |
26 #include "net/base/net_util.h" | 26 #include "net/base/net_util.h" |
27 #include "ui/base/dragdrop/drag_drop_types.h" | 27 #include "ui/base/dragdrop/drag_drop_types.h" |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
585 void DisableBookmarkBarViewAnimationsForTesting(bool disabled) { | 585 void DisableBookmarkBarViewAnimationsForTesting(bool disabled) { |
586 g_bookmark_bar_view_animations_disabled = disabled; | 586 g_bookmark_bar_view_animations_disabled = disabled; |
587 } | 587 } |
588 | 588 |
589 bool IsBookmarkBarViewAnimationsDisabled() { | 589 bool IsBookmarkBarViewAnimationsDisabled() { |
590 return g_bookmark_bar_view_animations_disabled; | 590 return g_bookmark_bar_view_animations_disabled; |
591 } | 591 } |
592 #endif | 592 #endif |
593 | 593 |
594 } // namespace bookmark_utils | 594 } // namespace bookmark_utils |
OLD | NEW |