diff options
author | acleung@chromium.org <acleung@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-25 04:39:47 +0000 |
---|---|---|
committer | acleung@chromium.org <acleung@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-25 04:39:47 +0000 |
commit | 14735fad76aa531a80d601ccc9f213aed051ddcc (patch) | |
tree | 2441668edb985adc615b633d7a923baa8228fb20 /content/common/screen_orientation_messages.h | |
parent | 1b248882920e1649839f40df47cdd6b8e512e4b7 (diff) | |
download | chromium_src-14735fad76aa531a80d601ccc9f213aed051ddcc.zip chromium_src-14735fad76aa531a80d601ccc9f213aed051ddcc.tar.gz chromium_src-14735fad76aa531a80d601ccc9f213aed051ddcc.tar.bz2 |
Revert of Chromium plumbing for Screen Orientation API orientationchange events. (https://codereview.chromium.org/164913004/)
Reason for revert:
SEE: https://code.google.com/p/chromium/issues/detail?id=346595
Original issue's description:
> Chromium plumbing for Screen Orientation API orientationchange events.
>
> This is using RenderViewObserver::OrientationChangeEvent and dispatch
> the information down to the renderer. More will come with locking
> and unlocking abilities.
>
> BUG=162827
>
> Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=253029
TBR=jochen@chromium.org,cdn@chromium.org,mlamouri@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=162827
Review URL: https://codereview.chromium.org/177293003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@253077 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/screen_orientation_messages.h')
-rw-r--r-- | content/common/screen_orientation_messages.h | 21 |
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 */ ) |