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

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

Issue 2638763004: Report CHECK/DCHECK to test launcher summary output. (Closed)
Patch Set: Fix error on ios. Created 3 years, 9 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
(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 // Forward declaration of StringPiece types from base/strings/string_piece.h
5
6 #ifndef BASE_STRINGS_STRING_PIECE_FORWARD_H_
7 #define BASE_STRINGS_STRING_PIECE_FORWARD_H_
8
9 #include <string>
10
11 #include "base/strings/string16.h"
12
13 namespace base {
14
15 template <typename STRING_TYPE>
16 class BasicStringPiece;
17 typedef BasicStringPiece<std::string> StringPiece;
18 typedef BasicStringPiece<string16> StringPiece16;
19
20 } // namespace base
21
22 #endif // BASE_STRINGS_STRING_PIECE_FORWARD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698