commit | a2f4804a37b18972279e887e00695dd02c1b7de3 | [log] [tgz] |
---|---|---|
author | avi <[email protected]> | Thu Dec 24 23:11:13 2015 |
committer | Commit bot <[email protected]> | Thu Dec 24 23:12:23 2015 |
tree | 50d25aaebadb735f9cc0aa86528c8e361860f219 | |
parent | 5723803b15bc90034e6271de2abf4a7e7803520b [diff] [blame] |
Switch to standard integer types in chrome/browser/extensions/. BUG=138542 [email protected] Review URL: https://codereview.chromium.org/1549933002 Cr-Commit-Position: refs/heads/master@{#366840}
diff --git a/chrome/browser/extensions/external_install_error.cc b/chrome/browser/extensions/external_install_error.cc index 8b42cb1..cd13c27 100644 --- a/chrome/browser/extensions/external_install_error.cc +++ b/chrome/browser/extensions/external_install_error.cc
@@ -4,7 +4,10 @@ #include "chrome/browser/extensions/external_install_error.h" +#include <stddef.h> + #include "base/bind.h" +#include "base/macros.h" #include "base/strings/utf_string_conversions.h" #include "chrome/app/chrome_command_ids.h" #include "chrome/browser/extensions/extension_install_prompt_show_params.h"