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

Unified Diff: chrome/browser/sync/glue/synced_window_delegate_registry.h

Issue 10701030: Refactor SyncedWindowDelegateAndroid into TabModel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit fixes Created 8 years, 5 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
Index: chrome/browser/sync/glue/synced_window_delegate_registry.h
diff --git a/chrome/browser/sync/glue/synced_window_delegate_registry.h b/chrome/browser/sync/glue/synced_window_delegate_registry.h
deleted file mode 100644
index ce782c4e93003e2dd32504b75349c46f313096fe..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/glue/synced_window_delegate_registry.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_REGISTRY_H_
-#define CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_REGISTRY_H_
-
-#include <set>
-
-namespace browser_sync {
-
-class SyncedWindowDelegate;
-
-// A location to register SyncedWindowDelegates such that Android can provide
-// pseudo-browsers for the purposes of Sync without having a dependency from
-// sync onto Android's model of a browser.
-class SyncedWindowDelegateRegistry {
- public:
- static const std::set<SyncedWindowDelegate*>& GetSyncedWindowDelegates();
- static void Register(SyncedWindowDelegate* delegate);
- static void Unregister(SyncedWindowDelegate* delegate);
-};
-
-} // namespace browser_sync
-
-#endif // CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_REGISTRY_H_

Powered by Google App Engine
This is Rietveld 408576698