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

Unified Diff: chrome/browser/sync/notifier/communicator/connection_settings.h

Issue 1956001: Moved XMPP notifier library from chrome/browser/sync to chrome/common.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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/notifier/communicator/connection_settings.h
===================================================================
--- chrome/browser/sync/notifier/communicator/connection_settings.h (revision 46353)
+++ chrome/browser/sync/notifier/communicator/connection_settings.h (working copy)
@@ -1,76 +0,0 @@
-// Copyright (c) 2009 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_NOTIFIER_COMMUNICATOR_CONNECTION_SETTINGS_H_
-#define CHROME_BROWSER_SYNC_NOTIFIER_COMMUNICATOR_CONNECTION_SETTINGS_H_
-
-#include <deque>
-#include <string>
-#include <vector>
-
-#include "talk/xmpp/xmppclientsettings.h"
-
-namespace notifier {
-
-class ConnectionSettings {
- public:
- ConnectionSettings() : protocol_(cricket::PROTO_TCP) {}
-
- cricket::ProtocolType protocol() { return protocol_; }
- const talk_base::SocketAddress& server() const { return server_; }
- const talk_base::ProxyInfo& proxy() const { return proxy_; }
-
- void set_protocol(cricket::ProtocolType protocol) { protocol_ = protocol; }
- talk_base::SocketAddress* mutable_server() { return &server_; }
- talk_base::ProxyInfo* mutable_proxy() { return &proxy_; }
-
- void FillXmppClientSettings(buzz::XmppClientSettings* xcs) const;
-
- private:
- cricket::ProtocolType protocol_; // PROTO_TCP, PROTO_SSLTCP, etc.
- talk_base::SocketAddress server_; // Server.
- talk_base::ProxyInfo proxy_; // Proxy info.
- // Need copy constructor due to use in stl deque.
-};
-
-class ConnectionSettingsList {
- public:
- ConnectionSettingsList() {}
-
- void SetProxy(const talk_base::ProxyInfo& proxy) {
- *(template_.mutable_proxy()) = proxy;
- }
-
- const talk_base::ProxyInfo& proxy() const {
- return template_.proxy();
- }
-
- int GetCount() { return list_.size(); }
- ConnectionSettings* GetSettings(size_t index) { return &list_[index]; }
-
- void ClearPermutations() {
- list_.clear();
- iplist_seen_.clear();
- }
-
- void AddPermutations(const std::string& hostname,
- const std::vector<uint32>& iplist,
- int16 port,
- bool special_port_magic,
- bool proxy_only);
- private:
- void PermuteForAddress(const talk_base::SocketAddress& server,
- bool special_port_magic,
- bool proxy_only,
- std::deque<ConnectionSettings>* list_temp);
-
- ConnectionSettings template_;
- std::deque<ConnectionSettings> list_;
- std::vector<uint32> iplist_seen_;
- DISALLOW_COPY_AND_ASSIGN(ConnectionSettingsList);
-};
-
-} // namespace notifier
-
-#endif // CHROME_BROWSER_SYNC_NOTIFIER_COMMUNICATOR_CONNECTION_SETTINGS_H_

Powered by Google App Engine
This is Rietveld 408576698