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

Side by Side Diff: rlz/win/lib/rlz_lib_win.cc

Issue 1547683004: Switch to standard integer types in rlz/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « rlz/win/lib/registry_util.h ('k') | rlz/win/lib/rlz_value_store_registry.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 // A library to manage RLZ information for access-points shared 5 // A library to manage RLZ information for access-points shared
6 // across different client applications. 6 // across different client applications.
7 7
8 #include "rlz/lib/rlz_lib.h" 8 #include "rlz/lib/rlz_lib.h"
9 9
10 #include <windows.h> 10 #include <windows.h>
11 #include <aclapi.h> 11 #include <aclapi.h>
12 #include <stddef.h>
12 #include <winerror.h> 13 #include <winerror.h>
13 14
14 #include "base/basictypes.h"
15 #include "base/win/registry.h" 15 #include "base/win/registry.h"
16 #include "rlz/lib/assert.h" 16 #include "rlz/lib/assert.h"
17 #include "rlz/lib/rlz_value_store.h" 17 #include "rlz/lib/rlz_value_store.h"
18 #include "rlz/win/lib/machine_deal.h" 18 #include "rlz/win/lib/machine_deal.h"
19 #include "rlz/win/lib/rlz_value_store_registry.h" 19 #include "rlz/win/lib/rlz_value_store_registry.h"
20 20
21 namespace rlz_lib { 21 namespace rlz_lib {
22 22
23 // OEM Deal confirmation storage functions. 23 // OEM Deal confirmation storage functions.
24 24
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 return MachineDealCode::Get(dcc, dcc_size); 200 return MachineDealCode::Get(dcc, dcc_size);
201 } 201 }
202 202
203 // Combined functions. 203 // Combined functions.
204 204
205 bool SetMachineDealCodeFromPingResponse(const char* response) { 205 bool SetMachineDealCodeFromPingResponse(const char* response) {
206 return MachineDealCode::SetFromPingResponse(response); 206 return MachineDealCode::SetFromPingResponse(response);
207 } 207 }
208 208
209 } // namespace rlz_lib 209 } // namespace rlz_lib
OLDNEW
« no previous file with comments | « rlz/win/lib/registry_util.h ('k') | rlz/win/lib/rlz_value_store_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698