diff options
author | rijubrata.bhaumik@intel.com <rijubrata.bhaumik@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-22 23:48:53 +0000 |
---|---|---|
committer | rijubrata.bhaumik@intel.com <rijubrata.bhaumik@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-22 23:48:53 +0000 |
commit | 3cc4db828f71ceb077a6093073f3bfbf449f92ee (patch) | |
tree | a730133d9b22fa869989162d576753b55cc80395 /content/content_browser.gypi | |
parent | 0c0b418008ced83af2c686c2351b640539d4f9a3 (diff) | |
download | chromium_src-3cc4db828f71ceb077a6093073f3bfbf449f92ee.zip chromium_src-3cc4db828f71ceb077a6093073f3bfbf449f92ee.tar.gz chromium_src-3cc4db828f71ceb077a6093073f3bfbf449f92ee.tar.bz2 |
Rename device_orientation to device_sensors
content/{renderer, common, browser}/device_orientation ->
content/{renderer, common, browser}/device_sensors.
Rename DeviceMotionAndOrientation.java -> DeviceSensors.java
Fix the ifdef include guards
Fix Linting nits complained by cpplint.py
This change is needed to add DeviceLight api.
I will add DeviceLight related changes after https://codereview.chromium.org/143823004/
is added in Blink.
BUG=336424
Review URL: https://codereview.chromium.org/236833003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265421 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_browser.gypi')
-rw-r--r-- | content/content_browser.gypi | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/content/content_browser.gypi b/content/content_browser.gypi index 23c3d33..e767477 100644 --- a/content/content_browser.gypi +++ b/content/content_browser.gypi @@ -420,22 +420,22 @@ 'browser/device_monitor_mac.mm', 'browser/device_monitor_udev.cc', 'browser/device_monitor_udev.h', - 'browser/device_orientation/data_fetcher_shared_memory.h', - 'browser/device_orientation/data_fetcher_shared_memory_android.cc', - 'browser/device_orientation/data_fetcher_shared_memory_base.cc', - 'browser/device_orientation/data_fetcher_shared_memory_base.h', - 'browser/device_orientation/data_fetcher_shared_memory_default.cc', - 'browser/device_orientation/data_fetcher_shared_memory_mac.cc', - 'browser/device_orientation/data_fetcher_shared_memory_win.cc', - 'browser/device_orientation/device_inertial_sensor_service.cc', - 'browser/device_orientation/device_inertial_sensor_service.h', - 'browser/device_orientation/device_motion_message_filter.cc', - 'browser/device_orientation/device_motion_message_filter.h', - 'browser/device_orientation/device_orientation_message_filter.cc', - 'browser/device_orientation/device_orientation_message_filter.h', - 'browser/device_orientation/inertial_sensor_consts.h', - 'browser/device_orientation/sensor_manager_android.cc', - 'browser/device_orientation/sensor_manager_android.h', + 'browser/device_sensors/data_fetcher_shared_memory.h', + 'browser/device_sensors/data_fetcher_shared_memory_android.cc', + 'browser/device_sensors/data_fetcher_shared_memory_base.cc', + 'browser/device_sensors/data_fetcher_shared_memory_base.h', + 'browser/device_sensors/data_fetcher_shared_memory_default.cc', + 'browser/device_sensors/data_fetcher_shared_memory_mac.cc', + 'browser/device_sensors/data_fetcher_shared_memory_win.cc', + 'browser/device_sensors/device_inertial_sensor_service.cc', + 'browser/device_sensors/device_inertial_sensor_service.h', + 'browser/device_sensors/device_motion_message_filter.cc', + 'browser/device_sensors/device_motion_message_filter.h', + 'browser/device_sensors/device_orientation_message_filter.cc', + 'browser/device_sensors/device_orientation_message_filter.h', + 'browser/device_sensors/inertial_sensor_consts.h', + 'browser/device_sensors/sensor_manager_android.cc', + 'browser/device_sensors/sensor_manager_android.h', 'browser/dom_storage/dom_storage_area.cc', 'browser/dom_storage/dom_storage_area.h', 'browser/dom_storage/dom_storage_context_impl.cc', @@ -1498,7 +1498,7 @@ '../third_party/isimpledom/isimpledom.gyp:isimpledom', ], 'sources/': [ - ['exclude', '^browser/device_orientation/data_fetcher_shared_memory_default.cc$'], + ['exclude', '^browser/device_sensors/data_fetcher_shared_memory_default.cc$'], ], 'defines': [ # This prevents the inclusion of atlhost.h which paired @@ -1572,7 +1572,7 @@ ], }, 'sources/': [ - ['exclude', '^browser/device_orientation/data_fetcher_shared_memory_default.cc$'], + ['exclude', '^browser/device_sensors/data_fetcher_shared_memory_default.cc$'], ['exclude', '^browser/geolocation/network_location_provider\\.(cc|h)$'], ['exclude', '^browser/geolocation/network_location_request\\.(cc|h)$'], ['exclude', '^browser/tracing/tracing_ui'], @@ -1598,7 +1598,7 @@ }], ['OS=="mac"', { 'sources/': [ - ['exclude', '^browser/device_orientation/data_fetcher_shared_memory_default.cc$'], + ['exclude', '^browser/device_sensors/data_fetcher_shared_memory_default.cc$'], ], 'sources!': [ 'browser/geolocation/empty_wifi_data_provider.cc', |