summaryrefslogtreecommitdiffstats
path: root/content/common
diff options
context:
space:
mode:
Diffstat (limited to 'content/common')
-rw-r--r--content/common/DEPS1
-rw-r--r--content/common/content_message_generator.h1
-rw-r--r--content/common/screen_orientation_messages.h21
3 files changed, 0 insertions, 23 deletions
diff --git a/content/common/DEPS b/content/common/DEPS
index b26b7a4..2245cf5 100644
--- a/content/common/DEPS
+++ b/content/common/DEPS
@@ -23,7 +23,6 @@ include_rules = [
"+third_party/WebKit/public/platform/WebIDBDatabase.h",
"+third_party/WebKit/public/platform/WebIDBTypes.h",
"+third_party/WebKit/public/platform/WebReferrerPolicy.h",
- "+third_party/WebKit/public/platform/WebScreenOrientation.h",
"+third_party/WebKit/public/platform/WebScreenInfo.h",
"+third_party/WebKit/public/platform/WebServiceWorkerError.h",
"+third_party/WebKit/public/platform/WebStorageArea.h",
diff --git a/content/common/content_message_generator.h b/content/common/content_message_generator.h
index b2d8690..c7223af 100644
--- a/content/common/content_message_generator.h
+++ b/content/common/content_message_generator.h
@@ -48,7 +48,6 @@
#include "content/common/power_monitor_messages.h"
#include "content/common/quota_messages.h"
#include "content/common/resource_messages.h"
-#include "content/common/screen_orientation_messages.h"
#include "content/common/service_worker/embedded_worker_messages.h"
#include "content/common/service_worker/service_worker_messages.h"
#include "content/common/socket_stream_messages.h"
diff --git a/content/common/screen_orientation_messages.h b/content/common/screen_orientation_messages.h
deleted file mode 100644
index cd8a4b7..0000000
--- a/content/common/screen_orientation_messages.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// IPC messages for screen orientation.
-// Multiply-included message file, hence no include guard.
-
-#include "ipc/ipc_message_macros.h"
-#include "third_party/WebKit/public/platform/WebScreenOrientation.h"
-
-#undef IPC_MESSAGE_EXPORT
-#define IPC_MESSAGE_EXPORT CONTENT_EXPORT
-
-#define IPC_MESSAGE_START ScreenOrientationMsgStart
-
-IPC_ENUM_TRAITS(blink::WebScreenOrientation)
-
-// The browser process informs the renderer process that the screen orientation
-// has changed. |orientation| contains the new screen orientation in degrees.
-IPC_MESSAGE_CONTROL1(ScreenOrientationMsg_OrientationChange,
- blink::WebScreenOrientation /* orientation */ )