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

Side by Side Diff: samples/pdfium_test.cc

Issue 1707923002: Expand all paths to be based off pdfium/ directory (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 10 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
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <limits.h> 5 #include <limits.h>
6 #include <stdio.h> 6 #include <stdio.h>
7 #include <stdlib.h> 7 #include <stdlib.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #include <list> 10 #include <list>
11 #include <sstream> 11 #include <sstream>
12 #include <string> 12 #include <string>
13 #include <utility> 13 #include <utility>
14 #include <vector> 14 #include <vector>
15 15
16 #include "image_diff_png.h" 16 #include "samples/image_diff_png.h"
Tom Sepez 2016/02/17 21:32:28 *
dsinclair 2016/02/17 21:54:01 Done.
17 #include "public/fpdf_dataavail.h" 17 #include "public/fpdf_dataavail.h"
18 #include "public/fpdf_edit.h" 18 #include "public/fpdf_edit.h"
19 #include "public/fpdf_ext.h" 19 #include "public/fpdf_ext.h"
20 #include "public/fpdf_formfill.h" 20 #include "public/fpdf_formfill.h"
21 #include "public/fpdf_text.h" 21 #include "public/fpdf_text.h"
22 #include "public/fpdfview.h" 22 #include "public/fpdfview.h"
23 #include "testing/test_support.h" 23 #include "testing/test_support.h"
24 24
25 #ifdef PDF_ENABLE_V8 25 #ifdef PDF_ENABLE_V8
26 #include "v8/include/libplatform/libplatform.h" 26 #include "v8/include/libplatform/libplatform.h"
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 } 699 }
700 700
701 FPDF_DestroyLibrary(); 701 FPDF_DestroyLibrary();
702 #ifdef PDF_ENABLE_V8 702 #ifdef PDF_ENABLE_V8
703 v8::V8::ShutdownPlatform(); 703 v8::V8::ShutdownPlatform();
704 delete platform; 704 delete platform;
705 #endif // PDF_ENABLE_V8 705 #endif // PDF_ENABLE_V8
706 706
707 return 0; 707 return 0;
708 } 708 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698