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

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

Issue 1544433002: Replace RE2 import with a dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-Added LICENSE and OWNERS file Created 5 years 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/common/image_util.cc ('k') | gpu/command_buffer/service/program_manager.cc » ('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 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 "extensions/common/stack_frame.h" 5 #include "extensions/common/stack_frame.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "third_party/re2/re2/re2.h" 10 #include "third_party/re2/src/re2/re2.h"
11 11
12 namespace extensions { 12 namespace extensions {
13 13
14 namespace { 14 namespace {
15 const char kAnonymousFunction[] = "(anonymous function)"; 15 const char kAnonymousFunction[] = "(anonymous function)";
16 } 16 }
17 17
18 StackFrame::StackFrame() : line_number(1), column_number(1) { 18 StackFrame::StackFrame() : line_number(1), column_number(1) {
19 } 19 }
20 20
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 } 71 }
72 72
73 bool StackFrame::operator==(const StackFrame& rhs) const { 73 bool StackFrame::operator==(const StackFrame& rhs) const {
74 return line_number == rhs.line_number && 74 return line_number == rhs.line_number &&
75 column_number == rhs.column_number && 75 column_number == rhs.column_number &&
76 source == rhs.source && 76 source == rhs.source &&
77 function == rhs.function; 77 function == rhs.function;
78 } 78 }
79 79
80 } // namespace extensions 80 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/image_util.cc ('k') | gpu/command_buffer/service/program_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698