| commit | 655876a383263438d7a963afc6990c3775d1994b | [log] [tgz] |
|---|---|---|
| author | avi <[email protected]> | Fri Dec 25 07:18:15 2015 |
| committer | Commit bot <[email protected]> | Fri Dec 25 07:19:24 2015 |
| tree | 57673c1633c7571e7862c6587af83bf92bf22dcd | |
| parent | 5ec7646c06c3266f27ae291db023e006190cc1cc [diff] [blame] |
Switch to standard integer types in chrome/browser/ui/. BUG=138542 [email protected] Review URL: https://codereview.chromium.org/1542383002 Cr-Commit-Position: refs/heads/master@{#366855}
diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc index 4905607..4cf104e 100644 --- a/chrome/browser/ui/browser_command_controller.cc +++ b/chrome/browser/ui/browser_command_controller.cc
@@ -4,11 +4,15 @@ #include "chrome/browser/ui/browser_command_controller.h" +#include <stddef.h> + #include <string> #include "base/command_line.h" #include "base/debug/debugging_flags.h" +#include "base/macros.h" #include "base/prefs/pref_service.h" +#include "build/build_config.h" #include "chrome/app/chrome_command_ids.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/chrome_notification_types.h"