summaryrefslogtreecommitdiffstats
path: root/content/renderer/device_orientation
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-18 19:13:56 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-18 19:13:56 +0000
commit8bac37b5e8327ec15ba6970de0d8550eecfd31c7 (patch)
treeda3be41b0f3fbb585f5836247b263b113f12a47c /content/renderer/device_orientation
parent4b9c9e299e0249e0a227a9c7031e0f7e9a290125 (diff)
downloadchromium_src-8bac37b5e8327ec15ba6970de0d8550eecfd31c7.zip
chromium_src-8bac37b5e8327ec15ba6970de0d8550eecfd31c7.tar.gz
chromium_src-8bac37b5e8327ec15ba6970de0d8550eecfd31c7.tar.bz2
Use a direct include of the shared_memory header in content/plugin/, content/public/, content/renderer/, gpu/.
BUG=260807 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/19379005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212391 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/device_orientation')
-rw-r--r--content/renderer/device_orientation/device_motion_event_pump.cc2
-rw-r--r--content/renderer/device_orientation/device_motion_event_pump.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/content/renderer/device_orientation/device_motion_event_pump.cc b/content/renderer/device_orientation/device_motion_event_pump.cc
index 94ecb5f..0cfd774 100644
--- a/content/renderer/device_orientation/device_motion_event_pump.cc
+++ b/content/renderer/device_orientation/device_motion_event_pump.cc
@@ -7,8 +7,8 @@
#include "base/bind.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
+#include "base/memory/shared_memory.h"
#include "base/message_loop/message_loop.h"
-#include "base/shared_memory.h"
#include "content/common/device_motion_messages.h"
#include "content/public/renderer/render_thread.h"
#include "third_party/WebKit/public/platform/WebDeviceMotionListener.h"
diff --git a/content/renderer/device_orientation/device_motion_event_pump.h b/content/renderer/device_orientation/device_motion_event_pump.h
index 4ced805..f2c3474 100644
--- a/content/renderer/device_orientation/device_motion_event_pump.h
+++ b/content/renderer/device_orientation/device_motion_event_pump.h
@@ -6,7 +6,7 @@
#define CONTENT_RENDERER_DEVICE_MOTION_EVENT_PUMP_H_
#include "base/memory/scoped_ptr.h"
-#include "base/shared_memory.h"
+#include "base/memory/shared_memory.h"
#include "base/timer/timer.h"
#include "content/public/renderer/render_process_observer.h"
#include "content/renderer/shared_memory_seqlock_reader.h"