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

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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 std::vector<char> buffer_; 60 std::vector<char> buffer_;
62 61
63 bool cache_content_; 62 bool cache_content_;
64 bool has_cached_size_; 63 bool has_cached_size_;
65 std::vector<char> cached_data_; 64 std::vector<char> cached_data_;
66 65
67 friend class MountHttp; 66 friend class MountHttp;
68 }; 67 };
69 68
70 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_ 69 #endif // LIBRARIES_NACL_IO_MOUNT_NODE_HTTP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698