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

Unified Diff: scripts/slave/unittests/data/patch_path_filter/svn_patch1.output3

Issue 27575002: Patch path filtering script. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Addressed comments Created 7 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/unittests/data/patch_path_filter/svn_patch1.output3
diff --git a/scripts/slave/unittests/data/patch_path_filter/svn_patch1.output3 b/scripts/slave/unittests/data/patch_path_filter/svn_patch1.output3
new file mode 100644
index 0000000000000000000000000000000000000000..2ce837036292318d3cf0667c557376bb4aec1272
--- /dev/null
+++ b/scripts/slave/unittests/data/patch_path_filter/svn_patch1.output3
@@ -0,0 +1,51 @@
+Index: third_party/npapi/bindings/npapi_extensions.h
+===================================================================
+--- third_party/npapi/bindings/npapi_extensions.h (revision 34298)
++++ third_party/npapi/bindings/npapi_extensions.h (working copy)
+@@ -203,24 +203,21 @@
+
+ typedef struct _NPDeviceContext2D
+ {
+- union {
+- struct {
+- void* region;
+- int32 stride;
++ void* reserved;
++ void* region;
++ int32 stride;
+
+- /* The dirty region that the plugin has painted into the buffer. This
+- * will be initialized to the size of the plugin image in
+- * initializeRenderContextPtr. The plugin can change the values to only
+- * update portions of the image.
+- */
+- struct {
+- int32 left;
+- int32 top;
+- int32 right;
+- int32 bottom;
+- } dirty;
+- } graphicsRgba;
+- } u;
++ /* The dirty region that the plugin has painted into the buffer. This
++ * will be initialized to the size of the plugin image in
++ * initializeContextPtr. The plugin can change the values to only
++ * update portions of the image.
++ */
++ struct {
++ int32 left;
++ int32 top;
++ int32 right;
++ int32 bottom;
++ } dirty;
+ } NPDeviceContext2D;
+
+ /* 3D -----------------------------------------------------------------------*/
+@@ -232,6 +229,7 @@
+
+ typedef struct _NPDeviceContext3D
+ {
++ void* reserved;
+ void* buffer;
+ int32 bufferLength;
+ } NPDeviceContext3D;

Powered by Google App Engine
This is Rietveld 408576698