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

Unified Diff: chrome/test/webdriver/webdriver_session_manager.cc

Issue 23526047: Delete old chromedriver code, and remove mongoose webserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 3 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/test/webdriver/webdriver_session_manager.h ('k') | chrome/test/webdriver/webdriver_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_session_manager.cc
diff --git a/chrome/test/webdriver/webdriver_session_manager.cc b/chrome/test/webdriver/webdriver_session_manager.cc
deleted file mode 100644
index aa5aeca9d1c4f530f1ed93b552ed1a0fae8116c5..0000000000000000000000000000000000000000
--- a/chrome/test/webdriver/webdriver_session_manager.cc
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright (c) 2011 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.
-
-#include "chrome/test/webdriver/webdriver_session_manager.h"
-
-#include "chrome/test/webdriver/webdriver_session.h"
-
-namespace webdriver {
-
-void SessionManager::Add(Session* session) {
- base::AutoLock lock(map_lock_);
- map_[session->id()] = session;
-}
-
-bool SessionManager::Has(const std::string& id) const {
- base::AutoLock lock(map_lock_);
- return map_.find(id) != map_.end();
-}
-
-bool SessionManager::Remove(const std::string& id) {
- std::map<std::string, Session*>::iterator it;
- base::AutoLock lock(map_lock_);
- it = map_.find(id);
- if (it == map_.end())
- return false;
- map_.erase(it);
- return true;
-}
-
-Session* SessionManager::GetSession(const std::string& id) const {
- std::map<std::string, Session*>::const_iterator it;
- base::AutoLock lock(map_lock_);
- it = map_.find(id);
- if (it == map_.end())
- return NULL;
- return it->second;
-}
-
-void SessionManager::set_port(const std::string& port) {
- port_ = port;
-}
-
-void SessionManager::set_url_base(const std::string& url_base) {
- url_base_ = url_base;
-}
-
-std::string SessionManager::url_base() const {
- return url_base_;
-}
-
-SessionManager::SessionManager() {}
-
-SessionManager::~SessionManager() {}
-
-// static
-SessionManager* SessionManager::GetInstance() {
- return Singleton<SessionManager>::get();
-}
-
-} // namespace webdriver
« no previous file with comments | « chrome/test/webdriver/webdriver_session_manager.h ('k') | chrome/test/webdriver/webdriver_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698