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

Side by Side Diff: chrome/browser/bookmarks/bookmark_utils.cc

Issue 6598086: Update more includes that were pointing to the old locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 9 years, 9 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 | Annotate | Revision Log
OLDNEW
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 #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/string16.h" 11 #include "base/string16.h"
12 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
13 #include "base/time.h" 13 #include "base/time.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "chrome/browser/bookmarks/bookmark_model.h" 15 #include "chrome/browser/bookmarks/bookmark_model.h"
16 #include "chrome/browser/bookmarks/bookmark_node_data.h" 16 #include "chrome/browser/bookmarks/bookmark_node_data.h"
17 #if defined(OS_MACOSX) 17 #if defined(OS_MACOSX)
18 #include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h" 18 #include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h"
19 #endif 19 #endif
20 #include "chrome/browser/browser_list.h" 20 #include "chrome/browser/browser_list.h"
21 #include "chrome/browser/browser_window.h" 21 #include "chrome/browser/browser_window.h"
22 #include "chrome/browser/history/query_parser.h" 22 #include "chrome/browser/history/query_parser.h"
23 #include "chrome/browser/platform_util.h" 23 #include "chrome/browser/platform_util.h"
24 #include "chrome/browser/prefs/pref_service.h" 24 #include "chrome/browser/prefs/pref_service.h"
25 #include "chrome/browser/profiles/profile.h" 25 #include "chrome/browser/profiles/profile.h"
26 #include "chrome/browser/tab_contents/page_navigator.h"
27 #include "chrome/browser/tab_contents/tab_contents.h"
28 #include "chrome/browser/ui/browser.h" 26 #include "chrome/browser/ui/browser.h"
29 #include "chrome/common/notification_service.h" 27 #include "chrome/common/notification_service.h"
30 #include "chrome/common/pref_names.h" 28 #include "chrome/common/pref_names.h"
29 #include "content/browser/tab_contents/page_navigator.h"
30 #include "content/browser/tab_contents/tab_contents.h"
31 #include "grit/app_strings.h" 31 #include "grit/app_strings.h"
32 #include "grit/chromium_strings.h" 32 #include "grit/chromium_strings.h"
33 #include "grit/generated_resources.h" 33 #include "grit/generated_resources.h"
34 #include "net/base/net_util.h" 34 #include "net/base/net_util.h"
35 #include "ui/base/dragdrop/drag_drop_types.h" 35 #include "ui/base/dragdrop/drag_drop_types.h"
36 #include "ui/base/l10n/l10n_util.h" 36 #include "ui/base/l10n/l10n_util.h"
37 #include "ui/base/models/tree_node_iterator.h" 37 #include "ui/base/models/tree_node_iterator.h"
38 38
39 #if defined(TOOLKIT_VIEWS) 39 #if defined(TOOLKIT_VIEWS)
40 #include "ui/base/dragdrop/os_exchange_data.h" 40 #include "ui/base/dragdrop/os_exchange_data.h"
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 return true; 670 return true;
671 671
672 for (int i = 0; i < node->GetChildCount(); ++i) { 672 for (int i = 0; i < node->GetChildCount(); ++i) {
673 if (NodeHasURLs(node->GetChild(i))) 673 if (NodeHasURLs(node->GetChild(i)))
674 return true; 674 return true;
675 } 675 }
676 return false; 676 return false;
677 } 677 }
678 678
679 } // namespace bookmark_utils 679 } // namespace bookmark_utils
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698