Index: chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
index 9fc0fe4ffade45b4b1eff26cce95a7044f46f19e..856cd00ad760abf31b8f682dd804584f563cb067 100644 |
--- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
+++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc |
@@ -4,6 +4,8 @@ |
#include "chrome/browser/ui/views/bookmarks/bookmark_bar_view.h" |
+#include <stdint.h> |
+ |
#include <algorithm> |
#include <limits> |
#include <string> |
@@ -12,12 +14,14 @@ |
#include "base/bind.h" |
#include "base/i18n/rtl.h" |
#include "base/location.h" |
+#include "base/macros.h" |
#include "base/metrics/histogram.h" |
#include "base/prefs/pref_service.h" |
#include "base/single_thread_task_runner.h" |
#include "base/strings/string_util.h" |
#include "base/strings/utf_string_conversions.h" |
#include "base/thread_task_runner_handle.h" |
+#include "build/build_config.h" |
#include "chrome/browser/bookmarks/bookmark_model_factory.h" |
#include "chrome/browser/bookmarks/managed_bookmark_service_factory.h" |
#include "chrome/browser/browser_process.h" |
@@ -1218,8 +1222,8 @@ void BookmarkBarView::BookmarkMenuControllerDeleted( |
} |
void BookmarkBarView::OnImportBookmarks() { |
- int64 install_time = g_browser_process->metrics_service()->GetInstallDate(); |
- int64 time_from_install = base::Time::Now().ToTimeT() - install_time; |
+ int64_t install_time = g_browser_process->metrics_service()->GetInstallDate(); |
+ int64_t time_from_install = base::Time::Now().ToTimeT() - install_time; |
if (bookmark_bar_state_ == BookmarkBar::SHOW) { |
UMA_HISTOGRAM_COUNTS("Import.ShowDialog.FromBookmarkBarView", |
time_from_install); |