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

Side by Side Diff: base/strings/string_piece_forward.h

Issue 2638763004: Report CHECK/DCHECK to test launcher summary output. (Closed)
Patch Set: Add test for assert handlers nesting. Created 3 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 | « base/strings/string_piece.h ('k') | base/test/gtest_xml_unittest_result_printer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Forward declaration of StringPiece types from base/strings/string_piece.h
6
7 #ifndef BASE_STRINGS_STRING_PIECE_FORWARD_H_
8 #define BASE_STRINGS_STRING_PIECE_FORWARD_H_
9
10 #include <string>
11
12 #include "base/strings/string16.h"
13
14 namespace base {
15
16 template <typename STRING_TYPE>
17 class BasicStringPiece;
18 typedef BasicStringPiece<std::string> StringPiece;
19 typedef BasicStringPiece<string16> StringPiece16;
20
21 } // namespace base
22
23 #endif // BASE_STRINGS_STRING_PIECE_FORWARD_H_
OLDNEW
« no previous file with comments | « base/strings/string_piece.h ('k') | base/test/gtest_xml_unittest_result_printer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698