summaryrefslogtreecommitdiffstats
path: root/content/shell/shell_browser_context.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-26 17:22:54 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-26 17:22:54 +0000
commite99ca5111f19b5401f0e18e52a0ebbddc8a36f78 (patch)
tree783c4faacbaf48e2bdfd40aa4bbb6ee38079bbb9 /content/shell/shell_browser_context.h
parent30fcaa494a7c2fd728821d603816d19f764857f6 (diff)
downloadchromium_src-e99ca5111f19b5401f0e18e52a0ebbddc8a36f78.zip
chromium_src-e99ca5111f19b5401f0e18e52a0ebbddc8a36f78.tar.gz
chromium_src-e99ca5111f19b5401f0e18e52a0ebbddc8a36f78.tar.bz2
A few improvements to content_shell:
-support multiple windows, this allows window.open to work -add menu to create new windows-update buttons and url bar -ensure we destruct ResourceContext on the right thread -ensure we destruct BrowserContext while all the threads are still alive -add http:// to the url if the user forgot to enter it BUG= 90445 Review URL: http://codereview.chromium.org/8043011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102749 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/shell_browser_context.h')
-rw-r--r--content/shell/shell_browser_context.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/shell/shell_browser_context.h b/content/shell/shell_browser_context.h
index feed65d..b5806c5 100644
--- a/content/shell/shell_browser_context.h
+++ b/content/shell/shell_browser_context.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/compiler_specific.h"
+#include "base/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "content/browser/browser_context.h"
@@ -53,6 +54,7 @@ class ShellBrowserContext : public BrowserContext {
private:
void CreateQuotaManagerAndClients();
+ FilePath path_;
scoped_ptr<ResourceContext> resource_context_;
scoped_ptr<SSLHostState> ssl_host_state_;
scoped_ptr<DownloadStatusUpdater> download_status_updater_;