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

Side by Side Diff: chrome/browser/sync/engine/syncer.h

Issue 8573011: Event tracing for sync events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use simpler TRACE_EVENT macros Created 9 years, 1 month 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_SYNC_ENGINE_SYNCER_H_ 5 #ifndef CHROME_BROWSER_SYNC_ENGINE_SYNCER_H_
6 #define CHROME_BROWSER_SYNC_ENGINE_SYNCER_H_ 6 #define CHROME_BROWSER_SYNC_ENGINE_SYNCER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 FRIEND_TEST_ALL_PREFIXES(SyncerTest, DeletingEntryWithLocalEdits); 121 FRIEND_TEST_ALL_PREFIXES(SyncerTest, DeletingEntryWithLocalEdits);
122 FRIEND_TEST_ALL_PREFIXES(EntryCreatedInNewFolderTest, 122 FRIEND_TEST_ALL_PREFIXES(EntryCreatedInNewFolderTest,
123 EntryCreatedInNewFolderMidSync); 123 EntryCreatedInNewFolderMidSync);
124 124
125 DISALLOW_COPY_AND_ASSIGN(Syncer); 125 DISALLOW_COPY_AND_ASSIGN(Syncer);
126 }; 126 };
127 127
128 // Utility function declarations. 128 // Utility function declarations.
129 void CopyServerFields(syncable::Entry* src, syncable::MutableEntry* dest); 129 void CopyServerFields(syncable::Entry* src, syncable::MutableEntry* dest);
130 void ClearServerData(syncable::MutableEntry* entry); 130 void ClearServerData(syncable::MutableEntry* entry);
131 const char* SyncerStepToString(const SyncerStep);
akalin 2011/11/17 03:27:21 "const SyncerStep" -> "SyncerStep step"
131 132
132 } // namespace browser_sync 133 } // namespace browser_sync
133 134
134 #endif // CHROME_BROWSER_SYNC_ENGINE_SYNCER_H_ 135 #endif // CHROME_BROWSER_SYNC_ENGINE_SYNCER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/engine/syncer.cc » ('j') | chrome/browser/sync/engine/syncer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698