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

Side by Side Diff: chrome/utility/media_galleries/pmp_column_reader.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 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 unified diff | Download patch
« no previous file with comments | « chrome/utility/image_writer/disk_unmounter_mac.h ('k') | chrome/utility/printing_handler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_UTILITY_MEDIA_GALLERIES_PMP_COLUMN_READER_H_ 5 #ifndef CHROME_UTILITY_MEDIA_GALLERIES_PMP_COLUMN_READER_H_
6 #define CHROME_UTILITY_MEDIA_GALLERIES_PMP_COLUMN_READER_H_ 6 #define CHROME_UTILITY_MEDIA_GALLERIES_PMP_COLUMN_READER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "chrome/common/media_galleries/pmp_constants.h" 15 #include "chrome/common/media_galleries/pmp_constants.h"
16 16
17 namespace base { 17 namespace base {
18 class File; 18 class File;
19 class FilePath;
20 } 19 }
21 20
22 namespace picasa { 21 namespace picasa {
23 22
24 // Reads a single PMP column from a file. 23 // Reads a single PMP column from a file.
25 class PmpColumnReader { 24 class PmpColumnReader {
26 public: 25 public:
27 PmpColumnReader(); 26 PmpColumnReader();
28 virtual ~PmpColumnReader(); 27 virtual ~PmpColumnReader();
29 28
(...skipping 28 matching lines...) Expand all
58 57
59 // Index of string start locations if fields are strings. Empty otherwise. 58 // Index of string start locations if fields are strings. Empty otherwise.
60 std::vector<const char*> strings_; 59 std::vector<const char*> strings_;
61 60
62 DISALLOW_COPY_AND_ASSIGN(PmpColumnReader); 61 DISALLOW_COPY_AND_ASSIGN(PmpColumnReader);
63 }; 62 };
64 63
65 } // namespace picasa 64 } // namespace picasa
66 65
67 #endif // CHROME_UTILITY_MEDIA_GALLERIES_PMP_COLUMN_READER_H_ 66 #endif // CHROME_UTILITY_MEDIA_GALLERIES_PMP_COLUMN_READER_H_
OLDNEW
« no previous file with comments | « chrome/utility/image_writer/disk_unmounter_mac.h ('k') | chrome/utility/printing_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698