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

Side by Side Diff: third_party/WebKit/Source/platform/testing/PlatformTestPrinters.cpp

Issue 1722893002: [LoaderTest] Add the gtest pretty printer for ResourceError (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp1274063003
Patch Set: Rebase. Created 4 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
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceError.h ('k') | no next file » | 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 2015 The Chromium Authors. All rights reserved.
tyoshino (SeeGerritForStatus) 2016/03/09 05:36:20 2016
hiroshige 2016/03/11 20:36:14 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "config.h"
tyoshino (SeeGerritForStatus) 2016/03/09 05:36:21 remove
hiroshige 2016/03/11 20:36:14 Done.
6
7 #include "platform/network/ResourceError.h"
8 #include <ostream>
9
10 // Pretty printer for gtest.
11 // Each corresponding declaration should be placed in the header file of
12 // the corresponding class (e.g. ResourceError.h) to avoid ODR violations,
13 // not in e.g. PlatformTestPrinters.h. See https://crbug.com/514330.
14
15 namespace blink {
16
17 std::ostream& operator<<(std::ostream& os, const ResourceError& error)
18 {
19 return os
20 << "domain = " << error.domain()
21 << ", errorCode = " << error.errorCode()
22 << ", failingURL = " << error.failingURL()
23 << ", localizedDescription = " << error.localizedDescription()
tyoshino (SeeGerritForStatus) 2016/03/09 05:36:21 isNull() is not included intentionally?
hiroshige 2016/03/11 20:36:14 Added.
24 << ", isCancellation = " << error.isCancellation()
25 << ", isAccessCheck = " << error.isAccessCheck()
26 << ", isTimeout = " << error.isTimeout()
27 << ", staleCopyInCache = " << error.staleCopyInCache()
28 << ", wasIgnoredByHandler = " << error.wasIgnoredByHandler();
29 }
30
31 }
tyoshino (SeeGerritForStatus) 2016/03/09 05:36:21 // namespace blink
hiroshige 2016/03/11 20:36:14 Done.
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceError.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698