| Index: content/browser/plugin_process_host_mac.cc
|
| diff --git a/content/browser/plugin_process_host_mac.cc b/content/browser/plugin_process_host_mac.cc
|
| index c7ece477fbd90c0bf5ee13daa75b4cba5b4b26a9..8bd04433bf943257940be94cf1a455302fa7f411 100644
|
| --- a/content/browser/plugin_process_host_mac.cc
|
| +++ b/content/browser/plugin_process_host_mac.cc
|
| @@ -3,6 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include <Carbon/Carbon.h>
|
| +#include <stdint.h>
|
|
|
| #include "build/build_config.h"
|
|
|
| @@ -19,7 +20,7 @@
|
|
|
| namespace content {
|
|
|
| -void PluginProcessHost::OnPluginShowWindow(uint32 window_id,
|
| +void PluginProcessHost::OnPluginShowWindow(uint32_t window_id,
|
| gfx::Rect window_rect,
|
| bool modal) {
|
| plugin_visible_windows_set_.insert(window_id);
|
| @@ -57,7 +58,7 @@ static void ReleasePluginFullScreen(pid_t plugin_pid) {
|
| }
|
| }
|
|
|
| -void PluginProcessHost::OnPluginHideWindow(uint32 window_id,
|
| +void PluginProcessHost::OnPluginHideWindow(uint32_t window_id,
|
| gfx::Rect window_rect) {
|
| bool had_windows = !plugin_visible_windows_set_.empty();
|
| plugin_visible_windows_set_.erase(window_id);
|
|
|