Index: chrome/test/testing_profile.h |
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h |
index f59a18b5589137de8b69914045db42eae90a30c3..2a29e8661c2908c6018c8d3335f0e0ba847e2ef4 100644 |
--- a/chrome/test/testing_profile.h |
+++ b/chrome/test/testing_profile.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2009-2010 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. |
@@ -13,10 +13,12 @@ |
#include "chrome/browser/browser_theme_provider.h" |
#include "chrome/browser/favicon_service.h" |
#include "chrome/browser/history/history.h" |
+#include "chrome/browser/net/url_request_context_getter.h" |
#include "chrome/browser/profile.h" |
#include "chrome/browser/search_engines/template_url_model.h" |
#include "chrome/browser/sessions/session_service.h" |
#include "chrome/common/pref_service.h" |
+#include "net/base/cookie_monster.h" |
class TestingProfile : public Profile { |
public: |
@@ -100,6 +102,11 @@ class TestingProfile : public Profile { |
void set_has_history_service(bool has_history_service) { |
has_history_service_ = has_history_service; |
} |
+ net::CookieMonster* GetCookieMonster() { |
John Grabowski
2010/01/08 04:01:55
Add comment with reference to CreateRequestContext
|
+ if (!GetRequestContext()) |
+ return NULL; |
+ return GetRequestContext()->GetCookieStore()->GetCookieMonster(); |
+ } |
virtual SearchVersusNavigateClassifier* GetSearchVersusNavigateClassifier() { |
return NULL; |
} |
@@ -139,11 +146,19 @@ class TestingProfile : public Profile { |
InitThemes(); |
return theme_provider_.get(); |
} |
- virtual URLRequestContextGetter* GetRequestContext() { return NULL; } |
+ |
+ // Returns a testing ContextGetter if one has been created (this can return |
+ // NULL). This getter is currently only capable of returning a Context that |
+ // helps test the CookieMonster. See implementation comments for more |
+ // details. |
+ virtual URLRequestContextGetter* GetRequestContext(); |
+ void CreateRequestContext(); |
+ |
virtual URLRequestContextGetter* GetRequestContextForMedia() { return NULL; } |
virtual URLRequestContextGetter* GetRequestContextForExtensions() { |
return NULL; |
} |
+ |
virtual net::SSLConfigService* GetSSLConfigService() { return NULL; } |
virtual BlacklistManager* GetBlacklistManager() { return NULL; } |
virtual HostZoomMap* GetHostZoomMap() { return NULL; } |
@@ -230,6 +245,10 @@ class TestingProfile : public Profile { |
scoped_ptr<BrowserThemeProvider> theme_provider_; |
bool created_theme_provider_; |
+ // Internally, this is a TestURLRequestContextGetter that creates a dummy |
+ // request context. Currently, only the CookieMonster is hooked up. |
+ scoped_refptr<URLRequestContextGetter> request_context_; |
+ |
// Do we have a history service? This defaults to the value of |
// history_service, but can be explicitly set. |
bool has_history_service_; |