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

Unified Diff: Source/core/inspector/InjectedScriptHost.cpp

Issue 207783002: Omit "int" when using "unsigned" modifier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/InjectedScriptHost.h ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InjectedScriptHost.cpp
diff --git a/Source/core/inspector/InjectedScriptHost.cpp b/Source/core/inspector/InjectedScriptHost.cpp
index c04a97604d87a2c44545daca518eb46fd98b58d7..37092364360f494a9c5c7689dffaa3d84392f74e 100644
--- a/Source/core/inspector/InjectedScriptHost.cpp
+++ b/Source/core/inspector/InjectedScriptHost.cpp
@@ -106,7 +106,7 @@ void InjectedScriptHost::clearInspectedObjects()
m_inspectedObjects.clear();
}
-InjectedScriptHost::InspectableObject* InjectedScriptHost::inspectedObject(unsigned int num)
+InjectedScriptHost::InspectableObject* InjectedScriptHost::inspectedObject(unsigned num)
{
if (num >= m_inspectedObjects.size())
return m_defaultInspectableObject.get();
« no previous file with comments | « Source/core/inspector/InjectedScriptHost.h ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698