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

Unified Diff: chrome/browser/chromeos/display/output_protection_delegate.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/chromeos/display/output_protection_delegate.cc
diff --git a/chrome/browser/chromeos/display/output_protection_delegate.cc b/chrome/browser/chromeos/display/output_protection_delegate.cc
index f5eb56dba54a4a637be3f92f3856d9a553d99b26..88e0f77a0edc69863643ff07f68d2cfabed07e1e 100644
--- a/chrome/browser/chromeos/display/output_protection_delegate.cc
+++ b/chrome/browser/chromeos/display/output_protection_delegate.cc
@@ -17,7 +17,7 @@ namespace chromeos {
namespace {
-bool GetCurrentDisplayId(content::RenderFrameHost* rfh, int64* display_id) {
+bool GetCurrentDisplayId(content::RenderFrameHost* rfh, int64_t* display_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(rfh);
DCHECK(display_id);
@@ -164,7 +164,7 @@ void OutputProtectionDelegate::OnWindowHierarchyChanged(
return;
}
- int64 new_display_id = 0;
+ int64_t new_display_id = 0;
if (!GetCurrentDisplayId(rfh, &new_display_id))
return;
if (display_id_ == new_display_id)
« no previous file with comments | « chrome/browser/chromeos/display/output_protection_delegate.h ('k') | chrome/browser/chromeos/drive/debug_info_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698