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

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/mount_node_http.h

Issue 19673003: [NaCl SDK] Consistent use of copyright header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 */
5 4
6 #ifndef LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ 5 #ifndef LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_
7 #define LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ 6 #define LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_
8 7
9 #include <map> 8 #include <map>
10 #include <string> 9 #include <string>
11 #include <vector> 10 #include <vector>
12 11
13 #include "nacl_io/error.h" 12 #include "nacl_io/error.h"
14 #include "nacl_io/mount_node.h" 13 #include "nacl_io/mount_node.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 bool cache_content_; 64 bool cache_content_;
66 bool has_cached_size_; 65 bool has_cached_size_;
67 std::vector<char> cached_data_; 66 std::vector<char> cached_data_;
68 67
69 friend class MountHttp; 68 friend class MountHttp;
70 }; 69 };
71 70
72 } // namespace nacl_io 71 } // namespace nacl_io
73 72
74 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ 73 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698