summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/glue/change_processor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/glue/change_processor.cc')
-rw-r--r--chrome/browser/sync/glue/change_processor.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/sync/glue/change_processor.cc b/chrome/browser/sync/glue/change_processor.cc
index 6b25382..f779070 100644
--- a/chrome/browser/sync/glue/change_processor.cc
+++ b/chrome/browser/sync/glue/change_processor.cc
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "chrome/browser/sync/glue/change_processor.h"
-#include "chrome/browser/profile.h"
+#include "chrome/browser/profiles/profile.h"
namespace browser_sync {
@@ -27,4 +27,8 @@ void ChangeProcessor::Stop() {
running_ = false;
}
+bool ChangeProcessor::IsRunning() const {
+ return running_;
+}
+
} // namespace browser_sync