summaryrefslogtreecommitdiffstats
path: root/content/browser/shared_worker
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-25 12:57:10 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-25 20:58:00 +0000
commitb7348940d384d5a2132f3cb88741693daab30c2d (patch)
tree5a3b726807e3a628a6da8843bdfb78a1ffb3048a /content/browser/shared_worker
parent30da2e2321c8a6bcc5a29581b75e0d4ccf82f0c5 (diff)
downloadchromium_src-b7348940d384d5a2132f3cb88741693daab30c2d.zip
chromium_src-b7348940d384d5a2132f3cb88741693daab30c2d.tar.gz
chromium_src-b7348940d384d5a2132f3cb88741693daab30c2d.tar.bz2
Switch to standard integer types in content/browser/.
BUG=138542 TBR=jam@chromium.org Review URL: https://codereview.chromium.org/1549113002 Cr-Commit-Position: refs/heads/master@{#366868}
Diffstat (limited to 'content/browser/shared_worker')
-rw-r--r--content/browser/shared_worker/shared_worker_host.h1
-rw-r--r--content/browser/shared_worker/shared_worker_instance.h1
-rw-r--r--content/browser/shared_worker/shared_worker_instance_unittest.cc2
-rw-r--r--content/browser/shared_worker/shared_worker_message_filter.cc8
-rw-r--r--content/browser/shared_worker/shared_worker_message_filter.h1
-rw-r--r--content/browser/shared_worker/shared_worker_service_impl.cc3
-rw-r--r--content/browser/shared_worker/shared_worker_service_impl.h1
-rw-r--r--content/browser/shared_worker/shared_worker_service_impl_unittest.cc4
-rw-r--r--content/browser/shared_worker/worker_browsertest.cc1
-rw-r--r--content/browser/shared_worker/worker_document_set.h1
10 files changed, 16 insertions, 7 deletions
diff --git a/content/browser/shared_worker/shared_worker_host.h b/content/browser/shared_worker/shared_worker_host.h
index a73cb18..9fb9ca3 100644
--- a/content/browser/shared_worker/shared_worker_host.h
+++ b/content/browser/shared_worker/shared_worker_host.h
@@ -8,6 +8,7 @@
#include <list>
#include <vector>
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string16.h"
diff --git a/content/browser/shared_worker/shared_worker_instance.h b/content/browser/shared_worker/shared_worker_instance.h
index f3b3be6..025da9b 100644
--- a/content/browser/shared_worker/shared_worker_instance.h
+++ b/content/browser/shared_worker/shared_worker_instance.h
@@ -7,7 +7,6 @@
#include <string>
-#include "base/basictypes.h"
#include "content/browser/shared_worker/worker_storage_partition.h"
#include "content/common/content_export.h"
#include "third_party/WebKit/public/web/WebContentSecurityPolicy.h"
diff --git a/content/browser/shared_worker/shared_worker_instance_unittest.cc b/content/browser/shared_worker/shared_worker_instance_unittest.cc
index 8991b05..c78cb1f 100644
--- a/content/browser/shared_worker/shared_worker_instance_unittest.cc
+++ b/content/browser/shared_worker/shared_worker_instance_unittest.cc
@@ -2,7 +2,7 @@
// 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 "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/string16.h"
#include "base/strings/utf_string_conversions.h"
diff --git a/content/browser/shared_worker/shared_worker_message_filter.cc b/content/browser/shared_worker/shared_worker_message_filter.cc
index ebf79ff..53f04ba 100644
--- a/content/browser/shared_worker/shared_worker_message_filter.cc
+++ b/content/browser/shared_worker/shared_worker_message_filter.cc
@@ -4,6 +4,9 @@
#include "content/browser/shared_worker/shared_worker_message_filter.h"
+#include <stdint.h>
+
+#include "base/macros.h"
#include "content/browser/message_port_message_filter.h"
#include "content/browser/shared_worker/shared_worker_service_impl.h"
#include "content/common/devtools_messages.h"
@@ -13,9 +16,8 @@
namespace content {
namespace {
-const uint32 kFilteredMessageClasses[] = {
- ViewMsgStart,
- WorkerMsgStart,
+const uint32_t kFilteredMessageClasses[] = {
+ ViewMsgStart, WorkerMsgStart,
};
} // namespace
diff --git a/content/browser/shared_worker/shared_worker_message_filter.h b/content/browser/shared_worker/shared_worker_message_filter.h
index b5f54e5..da0d32c 100644
--- a/content/browser/shared_worker/shared_worker_message_filter.h
+++ b/content/browser/shared_worker/shared_worker_message_filter.h
@@ -5,6 +5,7 @@
#ifndef CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_
#define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_MESSAGE_FILTER_H_
+#include "base/macros.h"
#include "content/browser/shared_worker/worker_storage_partition.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_message_filter.h"
diff --git a/content/browser/shared_worker/shared_worker_service_impl.cc b/content/browser/shared_worker/shared_worker_service_impl.cc
index 91579b4..400541a 100644
--- a/content/browser/shared_worker/shared_worker_service_impl.cc
+++ b/content/browser/shared_worker/shared_worker_service_impl.cc
@@ -4,12 +4,15 @@
#include "content/browser/shared_worker/shared_worker_service_impl.h"
+#include <stddef.h>
+
#include <algorithm>
#include <iterator>
#include <set>
#include <vector>
#include "base/callback.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "content/browser/devtools/shared_worker_devtools_manager.h"
#include "content/browser/renderer_host/render_process_host_impl.h"
diff --git a/content/browser/shared_worker/shared_worker_service_impl.h b/content/browser/shared_worker/shared_worker_service_impl.h
index aae153d..7b6bf85 100644
--- a/content/browser/shared_worker/shared_worker_service_impl.h
+++ b/content/browser/shared_worker/shared_worker_service_impl.h
@@ -9,6 +9,7 @@
#include "base/compiler_specific.h"
#include "base/containers/scoped_ptr_hash_map.h"
+#include "base/macros.h"
#include "base/memory/singleton.h"
#include "base/observer_list.h"
#include "content/public/browser/notification_observer.h"
diff --git a/content/browser/shared_worker/shared_worker_service_impl_unittest.cc b/content/browser/shared_worker/shared_worker_service_impl_unittest.cc
index 332490a..f2f3015 100644
--- a/content/browser/shared_worker/shared_worker_service_impl_unittest.cc
+++ b/content/browser/shared_worker/shared_worker_service_impl_unittest.cc
@@ -2,12 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stddef.h>
+
#include <map>
#include <set>
#include <vector>
#include "base/atomic_sequence_num.h"
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "base/strings/string16.h"
diff --git a/content/browser/shared_worker/worker_browsertest.cc b/content/browser/shared_worker/worker_browsertest.cc
index c88be69..553d129 100644
--- a/content/browser/shared_worker/worker_browsertest.cc
+++ b/content/browser/shared_worker/worker_browsertest.cc
@@ -10,6 +10,7 @@
#include "base/strings/utf_string_conversions.h"
#include "base/sys_info.h"
#include "base/test/test_timeouts.h"
+#include "build/build_config.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/client_certificate_delegate.h"
#include "content/public/common/content_paths.h"
diff --git a/content/browser/shared_worker/worker_document_set.h b/content/browser/shared_worker/worker_document_set.h
index 54ae9e9..e7ed277 100644
--- a/content/browser/shared_worker/worker_document_set.h
+++ b/content/browser/shared_worker/worker_document_set.h
@@ -7,7 +7,6 @@
#include <set>
-#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
namespace content {