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

Side by Side Diff: sandbox/win/src/interception.cc

Issue 1539423002: Revert of Switch to standard integer types in sandbox/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « sandbox/win/src/interception.h ('k') | sandbox/win/src/interception_agent.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // For information about interceptions as a whole see 5 // For information about interceptions as a whole see
6 // http://dev.chromium.org/developers/design-documents/sandbox . 6 // http://dev.chromium.org/developers/design-documents/sandbox .
7 7
8 #include <stddef.h>
9
10 #include <set> 8 #include <set>
11 9
12 #include "sandbox/win/src/interception.h" 10 #include "sandbox/win/src/interception.h"
13 11
14 #include "base/logging.h" 12 #include "base/logging.h"
15 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
16 #include "base/strings/string16.h" 14 #include "base/strings/string16.h"
17 #include "base/win/pe_image.h" 15 #include "base/win/pe_image.h"
18 #include "base/win/windows_version.h" 16 #include "base/win/windows_version.h"
19 #include "sandbox/win/src/interception_internal.h" 17 #include "sandbox/win/src/interception_internal.h"
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 ::FreeLibrary(local_interceptor); 549 ::FreeLibrary(local_interceptor);
552 #endif 550 #endif
553 551
554 if (it != interceptions_.end()) 552 if (it != interceptions_.end())
555 return false; 553 return false;
556 554
557 return true; 555 return true;
558 } 556 }
559 557
560 } // namespace sandbox 558 } // namespace sandbox
OLDNEW
« no previous file with comments | « sandbox/win/src/interception.h ('k') | sandbox/win/src/interception_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698