Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: content/browser/device_orientation/device_motion_provider.h

Issue 19398004: Use a direct include of the shared_memory header in content/browser/, content/child/, content/commo… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_DEVICE_ORIENTATION_DEVICE_MOTION_PROVIDER_H_ 5 #ifndef CONTENT_BROWSER_DEVICE_ORIENTATION_DEVICE_MOTION_PROVIDER_H_
6 #define CONTENT_BROWSER_DEVICE_ORIENTATION_DEVICE_MOTION_PROVIDER_H_ 6 #define CONTENT_BROWSER_DEVICE_ORIENTATION_DEVICE_MOTION_PROVIDER_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/shared_memory.h" 9 #include "base/memory/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/common/device_motion_hardware_buffer.h" 11 #include "content/common/device_motion_hardware_buffer.h"
12 12
13 namespace content { 13 namespace content {
14 class DataFetcherSharedMemory; 14 class DataFetcherSharedMemory;
15 15
16 class CONTENT_EXPORT DeviceMotionProvider { 16 class CONTENT_EXPORT DeviceMotionProvider {
17 public: 17 public:
18 DeviceMotionProvider(); 18 DeviceMotionProvider();
19 virtual ~DeviceMotionProvider(); 19 virtual ~DeviceMotionProvider();
(...skipping 16 matching lines...) Expand all
36 scoped_ptr<DataFetcherSharedMemory> data_fetcher_; 36 scoped_ptr<DataFetcherSharedMemory> data_fetcher_;
37 37
38 bool is_started_; 38 bool is_started_;
39 39
40 DISALLOW_COPY_AND_ASSIGN(DeviceMotionProvider); 40 DISALLOW_COPY_AND_ASSIGN(DeviceMotionProvider);
41 }; 41 };
42 42
43 } // namespace content 43 } // namespace content
44 44
45 #endif // CONTENT_BROWSER_DEVICE_ORIENTATION_DEVICE_MOTION_PROVIDER_H_ 45 #endif // CONTENT_BROWSER_DEVICE_ORIENTATION_DEVICE_MOTION_PROVIDER_H_
OLDNEW
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.h ('k') | content/browser/device_orientation/device_motion_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698