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

Side by Side Diff: extensions/renderer/activity_log_converter_strategy.cc

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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
« no previous file with comments | « extensions/browser/extension_pref_value_map.h ('k') | extensions/renderer/event_bindings.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "extensions/renderer/activity_log_converter_strategy.h" 5 #include "extensions/renderer/activity_log_converter_strategy.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/scoped_ptr.h"
8 #include "base/values.h" 9 #include "base/values.h"
9 #include "v8/include/v8.h" 10 #include "v8/include/v8.h"
10 11
11 namespace extensions { 12 namespace extensions {
12 13
13 namespace { 14 namespace {
14 15
15 // Summarize a V8 value. This performs a shallow conversion in all cases, and 16 // Summarize a V8 value. This performs a shallow conversion in all cases, and
16 // returns only a string with a description of the value (e.g., 17 // returns only a string with a description of the value (e.g.,
17 // "[HTMLElement]"). 18 // "[HTMLElement]").
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 v8::Isolate* isolate, 74 v8::Isolate* isolate,
74 const FromV8ValueCallback& callback) const { 75 const FromV8ValueCallback& callback) const {
75 scoped_ptr<base::Value> parsed_value; 76 scoped_ptr<base::Value> parsed_value;
76 parsed_value = SummarizeV8Value(isolate, value); 77 parsed_value = SummarizeV8Value(isolate, value);
77 *out = parsed_value.release(); 78 *out = parsed_value.release();
78 79
79 return true; 80 return true;
80 } 81 }
81 82
82 } // namespace extensions 83 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/extension_pref_value_map.h ('k') | extensions/renderer/event_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698