Index: content/common/service_worker/service_worker_types.h |
diff --git a/content/common/service_worker/service_worker_types.h b/content/common/service_worker/service_worker_types.h |
index 43e8ebbaca3e5afb945291c87934f2d303b7a5af..156a9291bb92af8a1a0d4a7884a24f11750775f0 100644 |
--- a/content/common/service_worker/service_worker_types.h |
+++ b/content/common/service_worker/service_worker_types.h |
@@ -21,15 +21,15 @@ namespace content { |
// Indicates invalid request ID (i.e. the sender does not expect it gets |
// response for the message) for messaging between browser process |
// and embedded worker. |
-const static int kInvalidServiceWorkerRequestId = -1; |
+static const int kInvalidServiceWorkerRequestId = -1; |
// Constants for invalid identifiers. |
-const static int kInvalidServiceWorkerHandleId = -1; |
-const static int kInvalidServiceWorkerProviderId = -1; |
-const static int64 kInvalidServiceWorkerRegistrationId = -1; |
-const static int64 kInvalidServiceWorkerVersionId = -1; |
-const static int64 kInvalidServiceWorkerResourceId = -1; |
-const static int64 kInvalidServiceWorkerResponseId = -1; |
+static const int kInvalidServiceWorkerHandleId = -1; |
+static const int kInvalidServiceWorkerProviderId = -1; |
+static const int64 kInvalidServiceWorkerRegistrationId = -1; |
+static const int64 kInvalidServiceWorkerVersionId = -1; |
+static const int64 kInvalidServiceWorkerResourceId = -1; |
+static const int64 kInvalidServiceWorkerResponseId = -1; |
// Indicates how the service worker handled a fetch event. |
enum ServiceWorkerFetchEventResult { |