summaryrefslogtreecommitdiffstats
path: root/chrome/browser/drive
diff options
context:
space:
mode:
authorrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-17 19:28:46 +0000
committerrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-17 19:28:46 +0000
commit001bbfdc4da9f8aec8e1a30770a1e4cef2347e0a (patch)
tree1017f4628ef475caaf86573c9c8ec2e7aa341997 /chrome/browser/drive
parentcb363e702cb70f99c707be975e57015b438eaef0 (diff)
downloadchromium_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.cc2
-rw-r--r--chrome/browser/drive/drive_notification_manager.h2
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;