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

Side by Side Diff: content/renderer/dom_storage/local_storage_cached_area.cc

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/renderer/dom_storage/local_storage_cached_area.h" 5 #include "content/renderer/dom_storage/local_storage_cached_area.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/ptr_util.h"
8 #include "base/metrics/histogram_macros.h" 9 #include "base/metrics/histogram_macros.h"
9 #include "base/rand_util.h" 10 #include "base/rand_util.h"
10 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
11 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/string_split.h" 13 #include "base/strings/string_split.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 #include "content/common/dom_storage/dom_storage_map.h" 15 #include "content/common/dom_storage/dom_storage_map.h"
15 #include "content/common/storage_partition_service.mojom.h" 16 #include "content/common/storage_partition_service.mojom.h"
16 #include "content/renderer/dom_storage/local_storage_area.h" 17 #include "content/renderer/dom_storage/local_storage_area.h"
17 #include "content/renderer/dom_storage/local_storage_cached_areas.h" 18 #include "content/renderer/dom_storage/local_storage_cached_areas.h"
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 } 361 }
361 362
362 void LocalStorageCachedArea::Reset() { 363 void LocalStorageCachedArea::Reset() {
363 map_ = NULL; 364 map_ = NULL;
364 ignore_key_mutations_.clear(); 365 ignore_key_mutations_.clear();
365 ignore_all_mutations_ = false; 366 ignore_all_mutations_ = false;
366 weak_factory_.InvalidateWeakPtrs(); 367 weak_factory_.InvalidateWeakPtrs();
367 } 368 }
368 369
369 } // namespace content 370 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/accessibility/render_accessibility_impl.cc ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698