summaryrefslogtreecommitdiffstats
path: root/content/browser/worker_host/worker_process_host.h
diff options
context:
space:
mode:
authoratwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-12 16:32:49 +0000
committeratwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-12 16:32:49 +0000
commit97021d2ef34aadd0b3b24261acf470678023067a (patch)
treea115f344a63e13ca5c13ea2ece49b143f04bd460 /content/browser/worker_host/worker_process_host.h
parentd7a5e3e4302a31eca7e7bbc8fb61b5ec0fa9d5d9 (diff)
downloadchromium_src-97021d2ef34aadd0b3b24261acf470678023067a.zip
chromium_src-97021d2ef34aadd0b3b24261acf470678023067a.tar.gz
chromium_src-97021d2ef34aadd0b3b24261acf470678023067a.tar.bz2
Remove off the record references from WorkerInstance. Contributed by vipul.bhasin@gmail.com
BUG=3333 TEST=None Review URL: http://codereview.chromium.org/6673015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77944 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/worker_host/worker_process_host.h')
-rw-r--r--content/browser/worker_host/worker_process_host.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/browser/worker_host/worker_process_host.h b/content/browser/worker_host/worker_process_host.h
index af446f0..7277098 100644
--- a/content/browser/worker_host/worker_process_host.h
+++ b/content/browser/worker_host/worker_process_host.h
@@ -31,7 +31,7 @@ class WorkerProcessHost : public BrowserChildProcessHost {
public:
WorkerInstance(const GURL& url,
bool shared,
- bool off_the_record,
+ bool incognito,
const string16& name,
int worker_route_id,
int parent_process_id,
@@ -60,7 +60,7 @@ class WorkerProcessHost : public BrowserChildProcessHost {
// (per the comparison algorithm in the WebWorkers spec). This API only
// applies to shared workers.
bool Matches(
- const GURL& url, const string16& name, bool off_the_record) const;
+ const GURL& url, const string16& name, bool incognito) const;
// Shares the passed instance's WorkerDocumentSet with this instance. This
// instance's current WorkerDocumentSet is dereferenced (and freed if this
@@ -71,7 +71,7 @@ class WorkerProcessHost : public BrowserChildProcessHost {
// Accessors
bool shared() const { return shared_; }
- bool off_the_record() const { return off_the_record_; }
+ bool incognito() const { return incognito_; }
bool closed() const { return closed_; }
void set_closed(bool closed) { closed_ = closed; }
const GURL& url() const { return url_; }
@@ -93,7 +93,7 @@ class WorkerProcessHost : public BrowserChildProcessHost {
// Set of all filters (clients) associated with this worker.
GURL url_;
bool shared_;
- bool off_the_record_;
+ bool incognito_;
bool closed_;
string16 name_;
int worker_route_id_;