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

Side by Side Diff: ppapi/native_client/src/include/nacl_memory.h

Issue 10914053: Relocating files in the nacl repo that belong in chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 3 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
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NATIVE_CLIENT_SRC_INCLUDE_MEMORY_H_
6 #define NATIVE_CLIENT_SRC_INCLUDE_MEMORY_H_
7
8 // Platform-specific includes for tr1::memory. The file is in a different
9 // location on Windows than on *nix platforms.
10
11 #ifdef __cplusplus
12
13 #if NACL_LINUX || NACL_OSX || __native_client__
14 #include <tr1/memory>
15 #elif NACL_WINDOWS
16 #include <memory>
17 #else
18 #error "tr1::memory header file not available for this platform."
19 #endif
20
21 #endif // __cplusplus
22
23 #endif // NATIVE_CLIENT_SRC_INCLUDE_MEMORY_H_
24
OLDNEW
« no previous file with comments | « ppapi/native_client/native_client.gyp ('k') | ppapi/native_client/src/trusted/weak_ref/call_on_main_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698