diff options
author | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-17 19:28:46 +0000 |
---|---|---|
committer | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-17 19:28:46 +0000 |
commit | 001bbfdc4da9f8aec8e1a30770a1e4cef2347e0a (patch) | |
tree | 1017f4628ef475caaf86573c9c8ec2e7aa341997 /chrome/browser/drive | |
parent | cb363e702cb70f99c707be975e57015b438eaef0 (diff) | |
download | chromium_src-001bbfdc4da9f8aec8e1a30770a1e4cef2347e0a.zip chromium_src-001bbfdc4da9f8aec8e1a30770a1e4cef2347e0a.tar.gz chromium_src-001bbfdc4da9f8aec8e1a30770a1e4cef2347e0a.tar.bz2 |
Move sync/notifier to components/invalidation
Moves all code remaining in sync/notifier to components/invalidation.
Updates gyp files, DEPS, and #includes accordingly.
In terms of program behavior, this should be one big no-op. This CL
contains no non-trivial code changes.
In terms of the build system, this is a significant change. Symbols
that were previously exported through sync_notifier and related targets
have moved into the components/invalidation related targets. Some
SYNC_EXPORT macros have been replaced with INVALIDATION_EXPORT, which is
significant since INVALIDATION_EXPORT is currently a no-op but
SYNC_EXPORT has meaning under some build configurations.
Unlike most other files in sync/notifier, invalidation_util.{cc,h} was
moved to sync/internal_api/public/base. This is so it could be
referenced from sync/internal_api/public/base/invalidation.cc. This is
a slight regression, but it should be fixed in the next CL when we move
all invalidations-related code out of sync/internal_api.
TBR=rogerta,benwells
BUG=259559
Review URL: https://codereview.chromium.org/387733004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283840 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/drive')
-rw-r--r-- | chrome/browser/drive/drive_notification_manager.cc | 2 | ||||
-rw-r--r-- | chrome/browser/drive/drive_notification_manager.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/drive/drive_notification_manager.cc b/chrome/browser/drive/drive_notification_manager.cc index 3deda59..0ba122b 100644 --- a/chrome/browser/drive/drive_notification_manager.cc +++ b/chrome/browser/drive/drive_notification_manager.cc @@ -7,8 +7,8 @@ #include "base/metrics/histogram.h" #include "chrome/browser/drive/drive_notification_observer.h" #include "components/invalidation/invalidation_service.h" +#include "components/invalidation/object_id_invalidation_map.h" #include "google/cacheinvalidation/types.pb.h" -#include "sync/notifier/object_id_invalidation_map.h" namespace drive { diff --git a/chrome/browser/drive/drive_notification_manager.h b/chrome/browser/drive/drive_notification_manager.h index c6712b2..793c1ab 100644 --- a/chrome/browser/drive/drive_notification_manager.h +++ b/chrome/browser/drive/drive_notification_manager.h @@ -9,8 +9,8 @@ #include "base/observer_list.h" #include "base/timer/timer.h" #include "chrome/browser/drive/drive_notification_observer.h" +#include "components/invalidation/invalidation_handler.h" #include "components/keyed_service/core/keyed_service.h" -#include "sync/notifier/invalidation_handler.h" class ProfileSyncService; |