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

Unified Diff: tools/clang/plugins/tests/ipc.txt

Issue 2015513004: rebase clang ipc plugin test after clang r270775. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/plugins/tests/ipc.txt
diff --git a/tools/clang/plugins/tests/ipc.txt b/tools/clang/plugins/tests/ipc.txt
index fbca40b865e413781c484aeffad31168b9fc39c9..5a2ac07a813539e524e160448eccb84523562b37 100644
--- a/tools/clang/plugins/tests/ipc.txt
+++ b/tools/clang/plugins/tests/ipc.txt
@@ -194,30 +194,30 @@ ipc.cpp:254:3: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted
ipc.cpp:212:32: note: expanded from macro 'CALL_WRITEPARAM'
IPC::WriteParam(nullptr, p); \
^
-ipc.cpp:324:28: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'long'.
+ipc.cpp:324:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'long'.
IPC::WriteParam(nullptr, p.get<long>()); // ERROR
- ^
-ipc.cpp:325:28: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'long'.
+ ^
+ipc.cpp:325:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'long'.
IPC::WriteParam(nullptr, p.get_long()); // ERROR
- ^
+ ^
ipc.cpp:326:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'long'.
IPC::WriteParam(nullptr, p.long_data); // ERROR
^
-ipc.cpp:331:28: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'size_t'.
+ipc.cpp:331:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'size_t'.
IPC::WriteParam(nullptr, p.get_size()); // ERROR
- ^
+ ^
ipc.cpp:332:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'size_t'.
IPC::WriteParam(nullptr, p.size_data); // ERROR
^
-ipc.cpp:336:28: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'unsigned long'.
+ipc.cpp:336:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'unsigned long'.
IPC::WriteParam(nullptr, p.get<uint64_t>()); // ERROR
- ^
-ipc.cpp:341:28: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'unsigned long' via 'struct std::vector<unsigned long, struct std::allocator<unsigned long> >'.
+ ^
+ipc.cpp:341:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'unsigned long' via 'struct std::vector<unsigned long, struct std::allocator<unsigned long> >'.
IPC::WriteParam(nullptr, p.get<std::vector<uint64_t>>()); // ERROR
- ^
-ipc.cpp:348:28: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'size_t' via 'std::vector<size_t>'.
+ ^
+ipc.cpp:348:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'size_t' via 'std::vector<size_t>'.
IPC::WriteParam(nullptr, p.get_sizes()); // ERROR
- ^
+ ^
ipc.cpp:349:30: error: [chromium-ipc] IPC::WriteParam() is called on blacklisted type 'size_t' via 'std::vector<size_t>'.
IPC::WriteParam(nullptr, p.sizes_data); // ERROR
^
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698