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

Unified Diff: chrome/browser/bookmarks/bookmark_node_data.cc

Issue 5512009: Remove unneeded browser_process.h includes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix linux build Created 10 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/bookmarks/bookmark_node_data.cc
===================================================================
--- chrome/browser/bookmarks/bookmark_node_data.cc (revision 68246)
+++ chrome/browser/bookmarks/bookmark_node_data.cc (working copy)
@@ -4,20 +4,24 @@
#include "chrome/browser/bookmarks/bookmark_node_data.h"
+#include <string>
+
#include "app/clipboard/scoped_clipboard_writer.h"
#include "base/basictypes.h"
#include "base/pickle.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
-#if defined(OS_MACOSX)
-#include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h"
-#endif
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/url_constants.h"
-#include "chrome/browser/browser_process.h"
#include "net/base/escape.h"
+#if defined(OS_MACOSX)
James Hawkins 2010/12/05 17:58:47 #ifdef includes are supposed to be in order with t
Lei Zhang 2010/12/05 18:22:40 Nope. http://www.chromium.org/developers/coding-st
+#include "chrome/browser/bookmarks/bookmark_pasteboard_helper_mac.h"
+#else
+#include "chrome/browser/browser_process.h"
+#endif
+
const char* BookmarkNodeData::kClipboardFormatString =
"chromium/x-bookmark-entries";

Powered by Google App Engine
This is Rietveld 408576698