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

Side by Side Diff: extensions/common/stack_frame.h

Issue 225493002: cleanup: cpplint src/extension/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
OLDNEW
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 #ifndef EXTENSIONS_COMMON_STACK_FRAME 5 #ifndef EXTENSIONS_COMMON_STACK_FRAME_H_
6 #define EXTENSIONS_COMMON_STACK_FRAME 6 #define EXTENSIONS_COMMON_STACK_FRAME_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 struct StackFrame { 15 struct StackFrame {
16 StackFrame(); 16 StackFrame();
(...skipping 13 matching lines...) Expand all
30 size_t line_number; 30 size_t line_number;
31 size_t column_number; 31 size_t column_number;
32 base::string16 source; 32 base::string16 source;
33 base::string16 function; // optional 33 base::string16 function; // optional
34 }; 34 };
35 35
36 typedef std::vector<StackFrame> StackTrace; 36 typedef std::vector<StackFrame> StackTrace;
37 37
38 } // namespace extensions 38 } // namespace extensions
39 39
40 #endif // EXTENSIONS_COMMON_STACK_FRAME 40 #endif // EXTENSIONS_COMMON_STACK_FRAME_H_
41 41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698