Index: chrome/browser/sync/glue/sync_backend_host.h |
diff --git a/chrome/browser/sync/glue/sync_backend_host.h b/chrome/browser/sync/glue/sync_backend_host.h |
index 7e6ee22e713c1b18640ff0ab4915c6cf2f84f933..9270f7580e01d6816ea4bc0ca15176bfa9942288 100644 |
--- a/chrome/browser/sync/glue/sync_backend_host.h |
+++ b/chrome/browser/sync/glue/sync_backend_host.h |
@@ -55,9 +55,13 @@ class SyncFrontend { |
public: |
SyncFrontend() {} |
- // The backend has completed initialization and it is now ready to accept and |
- // process changes. If success is false, initialization wasn't able to be |
- // completed and should be retried. |
+ // The backend has completed initialization and it is now ready to |
+ // accept and process changes. If success is false, initialization |
+ // wasn't able to be completed and should be retried. |
+ // |
+ // |js_backend| is what about:sync interacts with; it's different |
+ // from the 'Backend' in 'OnBackendInitialized' (unfortunately). It |
+ // is initialized only if |success| is true. |
virtual void OnBackendInitialized( |
const WeakHandle<JsBackend>& js_backend, bool success) = 0; |