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

Unified Diff: chrome/browser/ui/webui/sync_internals_ui.h

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/test_profile_sync_service.cc ('k') | chrome/browser/ui/webui/sync_internals_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/sync_internals_ui.h
diff --git a/chrome/browser/ui/webui/sync_internals_ui.h b/chrome/browser/ui/webui/sync_internals_ui.h
index 24f22f39cc4890e398e530e5e1909a2cde99ee7a..714375df6a32d39b8a9231cfd61274c814f8216f 100644
--- a/chrome/browser/ui/webui/sync_internals_ui.h
+++ b/chrome/browser/ui/webui/sync_internals_ui.h
@@ -15,14 +15,14 @@
#include "sync/js/js_event_handler.h"
#include "sync/js/js_reply_handler.h"
-namespace csync {
+namespace syncer {
class JsController;
-} // namespace csync
+} // namespace syncer
// The implementation for the chrome://sync-internals page.
class SyncInternalsUI : public content::WebUIController,
- public csync::JsEventHandler,
- public csync::JsReplyHandler {
+ public syncer::JsEventHandler,
+ public syncer::JsReplyHandler {
public:
explicit SyncInternalsUI(content::WebUI* web_ui);
virtual ~SyncInternalsUI();
@@ -44,19 +44,19 @@ class SyncInternalsUI : public content::WebUIController,
const std::string& name,
const base::ListValue& args) OVERRIDE;
- // csync::JsEventHandler implementation.
+ // syncer::JsEventHandler implementation.
virtual void HandleJsEvent(
const std::string& name,
- const csync::JsEventDetails& details) OVERRIDE;
+ const syncer::JsEventDetails& details) OVERRIDE;
- // csync::JsReplyHandler implementation.
+ // syncer::JsReplyHandler implementation.
virtual void HandleJsReply(
const std::string& name,
- const csync::JsArgList& args) OVERRIDE;
+ const syncer::JsArgList& args) OVERRIDE;
private:
base::WeakPtrFactory<SyncInternalsUI> weak_ptr_factory_;
- base::WeakPtr<csync::JsController> js_controller_;
+ base::WeakPtr<syncer::JsController> js_controller_;
DISALLOW_COPY_AND_ASSIGN(SyncInternalsUI);
};
« no previous file with comments | « chrome/browser/sync/test_profile_sync_service.cc ('k') | chrome/browser/ui/webui/sync_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698