summaryrefslogtreecommitdiffstats
path: root/content/common/screen_orientation_messages.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/screen_orientation_messages.h')
-rw-r--r--content/common/screen_orientation_messages.h21
1 files changed, 0 insertions, 21 deletions
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 */ )