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

Side by Side Diff: components/sync/engine_impl/js_mutation_event_observer.h

Issue 2413313004: [Sync] Move the last things out of core/. (Closed)
Patch Set: Address comments. Created 4 years, 2 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 COMPONENTS_SYNC_CORE_IMPL_JS_MUTATION_EVENT_OBSERVER_H_ 5 #ifndef COMPONENTS_SYNC_ENGINE_IMPL_JS_MUTATION_EVENT_OBSERVER_H_
6 #define COMPONENTS_SYNC_CORE_IMPL_JS_MUTATION_EVENT_OBSERVER_H_ 6 #define COMPONENTS_SYNC_ENGINE_IMPL_JS_MUTATION_EVENT_OBSERVER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "base/threading/non_thread_safe.h" 15 #include "base/threading/non_thread_safe.h"
16 #include "components/sync/base/weak_handle.h" 16 #include "components/sync/base/weak_handle.h"
17 #include "components/sync/core/sync_manager.h" 17 #include "components/sync/engine/sync_manager.h"
18 #include "components/sync/syncable/transaction_observer.h" 18 #include "components/sync/syncable/transaction_observer.h"
19 19
20 namespace tracked_objects { 20 namespace tracked_objects {
21 class Location; 21 class Location;
22 } // namespace tracked_objects 22 } // namespace tracked_objects
23 23
24 namespace syncer { 24 namespace syncer {
25 25
26 class JsEventDetails; 26 class JsEventDetails;
27 class JsEventHandler; 27 class JsEventHandler;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 const std::string& name, 60 const std::string& name,
61 const JsEventDetails& details); 61 const JsEventDetails& details);
62 62
63 base::WeakPtrFactory<JsMutationEventObserver> weak_ptr_factory_; 63 base::WeakPtrFactory<JsMutationEventObserver> weak_ptr_factory_;
64 64
65 DISALLOW_COPY_AND_ASSIGN(JsMutationEventObserver); 65 DISALLOW_COPY_AND_ASSIGN(JsMutationEventObserver);
66 }; 66 };
67 67
68 } // namespace syncer 68 } // namespace syncer
69 69
70 #endif // COMPONENTS_SYNC_CORE_IMPL_JS_MUTATION_EVENT_OBSERVER_H_ 70 #endif // COMPONENTS_SYNC_ENGINE_IMPL_JS_MUTATION_EVENT_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698