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

Side by Side Diff: dbus/object_proxy.h

Issue 1541193002: Switch to standard integer types in dbus/. (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 | « dbus/object_manager_unittest.cc ('k') | dbus/object_proxy.cc » ('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 #ifndef DBUS_OBJECT_PROXY_H_ 5 #ifndef DBUS_OBJECT_PROXY_H_
6 #define DBUS_OBJECT_PROXY_H_ 6 #define DBUS_OBJECT_PROXY_H_
7 7
8 #include <dbus/dbus.h> 8 #include <dbus/dbus.h>
9 9
10 #include <map> 10 #include <map>
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/callback.h" 15 #include "base/callback.h"
16 #include "base/macros.h"
16 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
17 #include "base/strings/string_piece.h" 18 #include "base/strings/string_piece.h"
18 #include "base/time/time.h" 19 #include "base/time/time.h"
19 #include "dbus/dbus_export.h" 20 #include "dbus/dbus_export.h"
20 #include "dbus/object_path.h" 21 #include "dbus/object_path.h"
21 22
22 namespace dbus { 23 namespace dbus {
23 24
24 class Bus; 25 class Bus;
25 class ErrorResponse; 26 class ErrorResponse;
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 std::string service_name_owner_; 322 std::string service_name_owner_;
322 323
323 std::set<DBusPendingCall*> pending_calls_; 324 std::set<DBusPendingCall*> pending_calls_;
324 325
325 DISALLOW_COPY_AND_ASSIGN(ObjectProxy); 326 DISALLOW_COPY_AND_ASSIGN(ObjectProxy);
326 }; 327 };
327 328
328 } // namespace dbus 329 } // namespace dbus
329 330
330 #endif // DBUS_OBJECT_PROXY_H_ 331 #endif // DBUS_OBJECT_PROXY_H_
OLDNEW
« no previous file with comments | « dbus/object_manager_unittest.cc ('k') | dbus/object_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698