Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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_MESSAGE_H_ | 5 #ifndef DBUS_MESSAGE_H_ |
| 6 #define DBUS_MESSAGE_H_ | 6 #define DBUS_MESSAGE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 #include <dbus/dbus.h> | 11 #include <dbus/dbus.h> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "third_party/protobuf/src/google/protobuf/message_lite.h" | |
|
satorux1
2012/02/07 21:16:49
I guess it was added here by accident, rigth?
rharrison
2012/02/14 17:03:09
Done.
| |
| 14 | 15 |
| 15 namespace google { | 16 namespace google { |
| 16 namespace protobuf { | 17 namespace protobuf { |
| 17 | 18 |
| 18 class MessageLite; | 19 class MessageLite; |
| 19 | 20 |
| 20 } // namespace protobuf | 21 } // namespace protobuf |
| 21 } // namespace google | 22 } // namespace google |
| 22 | 23 |
| 23 | 24 |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 457 | 458 |
| 458 Message* message_; | 459 Message* message_; |
| 459 DBusMessageIter raw_message_iter_; | 460 DBusMessageIter raw_message_iter_; |
| 460 | 461 |
| 461 DISALLOW_COPY_AND_ASSIGN(MessageReader); | 462 DISALLOW_COPY_AND_ASSIGN(MessageReader); |
| 462 }; | 463 }; |
| 463 | 464 |
| 464 } // namespace dbus | 465 } // namespace dbus |
| 465 | 466 |
| 466 #endif // DBUS_MESSAGE_H_ | 467 #endif // DBUS_MESSAGE_H_ |
| OLD | NEW |