| Index: content/renderer/render_view_browsertest.cc
|
| diff --git a/content/renderer/render_view_browsertest.cc b/content/renderer/render_view_browsertest.cc
|
| index 484409feaef05323bf100b550911f735ac10170c..050d05fa8c8e51b638af1afeaf31465a9b8bde2e 100644
|
| --- a/content/renderer/render_view_browsertest.cc
|
| +++ b/content/renderer/render_view_browsertest.cc
|
| @@ -2,17 +2,21 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| #include "base/command_line.h"
|
| #include "base/location.h"
|
| +#include "base/macros.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "base/thread_task_runner_handle.h"
|
| #include "base/time/time.h"
|
| #include "base/win/windows_version.h"
|
| +#include "build/build_config.h"
|
| #include "content/child/request_extra_data.h"
|
| #include "content/child/service_worker/service_worker_network_provider.h"
|
| #include "content/common/frame_messages.h"
|
| @@ -2131,7 +2135,7 @@ TEST_F(RenderViewImplTest, MessageOrderInDidChangeSelection) {
|
| size_t last_selection = 0;
|
|
|
| for (size_t i = 0; i < render_thread_->sink().message_count(); ++i) {
|
| - const uint32 type = render_thread_->sink().GetMessageAt(i)->type();
|
| + const uint32_t type = render_thread_->sink().GetMessageAt(i)->type();
|
| if (type == ViewHostMsg_TextInputStateChanged::ID) {
|
| is_input_type_called = true;
|
| last_input_type = i;
|
|
|