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

Side by Side Diff: webkit/browser/dom_storage/dom_storage_host.cc

Issue 18191004: webkit: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync+rebase Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "webkit/browser/dom_storage/dom_storage_host.h" 5 #include "webkit/browser/dom_storage/dom_storage_host.h"
6 6
7 #include "googleurl/src/gurl.h" 7 #include "url/gurl.h"
8 #include "webkit/browser/dom_storage/dom_storage_area.h" 8 #include "webkit/browser/dom_storage/dom_storage_area.h"
9 #include "webkit/browser/dom_storage/dom_storage_context.h" 9 #include "webkit/browser/dom_storage/dom_storage_context.h"
10 #include "webkit/browser/dom_storage/dom_storage_namespace.h" 10 #include "webkit/browser/dom_storage/dom_storage_namespace.h"
11 #include "webkit/common/dom_storage/dom_storage_types.h" 11 #include "webkit/common/dom_storage/dom_storage_types.h"
12 12
13 namespace dom_storage { 13 namespace dom_storage {
14 14
15 DomStorageHost::DomStorageHost(DomStorageContext* context) 15 DomStorageHost::DomStorageHost(DomStorageContext* context)
16 : context_(context) { 16 : context_(context) {
17 } 17 }
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 return NULL; 161 return NULL;
162 return found->second.namespace_.get(); 162 return found->second.namespace_.get();
163 } 163 }
164 164
165 // NamespaceAndArea 165 // NamespaceAndArea
166 166
167 DomStorageHost::NamespaceAndArea::NamespaceAndArea() {} 167 DomStorageHost::NamespaceAndArea::NamespaceAndArea() {}
168 DomStorageHost::NamespaceAndArea::~NamespaceAndArea() {} 168 DomStorageHost::NamespaceAndArea::~NamespaceAndArea() {}
169 169
170 } // namespace dom_storage 170 } // namespace dom_storage
OLDNEW
« no previous file with comments | « webkit/browser/dom_storage/dom_storage_context.h ('k') | webkit/browser/dom_storage/session_storage_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698