OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/dom_storage/dom_storage_session.h" | 5 #include "content/browser/dom_storage/dom_storage_session.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/tracked_objects.h" | 10 #include "base/tracked_objects.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 bool DOMStorageSession::IsFromContext(DOMStorageContextImpl* context) { | 47 bool DOMStorageSession::IsFromContext(DOMStorageContextImpl* context) { |
48 return context_.get() == context; | 48 return context_.get() == context; |
49 } | 49 } |
50 | 50 |
51 DOMStorageSession* DOMStorageSession::Clone() { | 51 DOMStorageSession* DOMStorageSession::Clone() { |
52 return CloneFrom(context_.get(), namespace_id_); | 52 return CloneFrom(context_.get(), namespace_id_); |
53 } | 53 } |
54 | 54 |
55 // static | 55 // static |
56 DOMStorageSession* DOMStorageSession::CloneFrom(DOMStorageContextImpl* context, | 56 DOMStorageSession* DOMStorageSession::CloneFrom(DOMStorageContextImpl* context, |
57 int64 namepace_id_to_clone) { | 57 int64_t namepace_id_to_clone) { |
58 int64 clone_id = context->AllocateSessionId(); | 58 int64_t clone_id = context->AllocateSessionId(); |
59 std::string persistent_clone_id = context->AllocatePersistentSessionId(); | 59 std::string persistent_clone_id = context->AllocatePersistentSessionId(); |
60 context->task_runner()->PostTask( | 60 context->task_runner()->PostTask( |
61 FROM_HERE, | 61 FROM_HERE, |
62 base::Bind(&DOMStorageContextImpl::CloneSessionNamespace, | 62 base::Bind(&DOMStorageContextImpl::CloneSessionNamespace, |
63 context, namepace_id_to_clone, clone_id, persistent_clone_id)); | 63 context, namepace_id_to_clone, clone_id, persistent_clone_id)); |
64 return new DOMStorageSession(context, clone_id, persistent_clone_id); | 64 return new DOMStorageSession(context, clone_id, persistent_clone_id); |
65 } | 65 } |
66 | 66 |
67 DOMStorageSession::DOMStorageSession(DOMStorageContextImpl* context, | 67 DOMStorageSession::DOMStorageSession(DOMStorageContextImpl* context, |
68 int64 namespace_id, | 68 int64_t namespace_id, |
69 const std::string& persistent_namespace_id) | 69 const std::string& persistent_namespace_id) |
70 : context_(context), | 70 : context_(context), |
71 namespace_id_(namespace_id), | 71 namespace_id_(namespace_id), |
72 persistent_namespace_id_(persistent_namespace_id), | 72 persistent_namespace_id_(persistent_namespace_id), |
73 should_persist_(false) { | 73 should_persist_(false) { |
74 // This ctor is intended for use by the Clone() method. | 74 // This ctor is intended for use by the Clone() method. |
75 } | 75 } |
76 | 76 |
77 DOMStorageSession::~DOMStorageSession() { | 77 DOMStorageSession::~DOMStorageSession() { |
78 context_->task_runner()->PostTask( | 78 context_->task_runner()->PostTask( |
79 FROM_HERE, | 79 FROM_HERE, |
80 base::Bind(&DOMStorageContextImpl::DeleteSessionNamespace, | 80 base::Bind(&DOMStorageContextImpl::DeleteSessionNamespace, |
81 context_, namespace_id_, should_persist_)); | 81 context_, namespace_id_, should_persist_)); |
82 } | 82 } |
83 | 83 |
84 } // namespace content | 84 } // namespace content |
OLD | NEW |