| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 BLIMP_CLIENT_APP_SESSION_BLIMP_CLIENT_SESSION_H_ | 5 #ifndef BLIMP_CLIENT_APP_SESSION_BLIMP_CLIENT_SESSION_H_ |
| 6 #define BLIMP_CLIENT_APP_SESSION_BLIMP_CLIENT_SESSION_H_ | 6 #define BLIMP_CLIENT_APP_SESSION_BLIMP_CLIENT_SESSION_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 15 #include "blimp/client/core/compositor/blob_image_serialization_processor.h" | 15 #include "blimp/client/core/compositor/blob_image_serialization_processor.h" |
| 16 #include "blimp/client/core/session/assignment_source.h" | 16 #include "blimp/client/core/session/assignment_source.h" |
| 17 #include "blimp/client/core/session/network_event_observer.h" | 17 #include "blimp/client/core/session/network_event_observer.h" |
| 18 #include "blimp/client/public/session/assignment.h" | 18 #include "blimp/client/public/session/assignment.h" |
| 19 #include "blimp/common/proto/blimp_message.pb.h" | 19 #include "blimp/common/proto/blimp_message.pb.h" |
| 20 #include "blimp/net/blimp_message_processor.h" | 20 #include "blimp/net/blimp_message_processor.h" |
| 21 | 21 |
| 22 namespace net { | |
| 23 class IPEndPoint; | |
| 24 } | |
| 25 | |
| 26 namespace blimp { | 22 namespace blimp { |
| 27 | 23 |
| 28 class BlimpMessageProcessor; | |
| 29 class BlimpMessageThreadPipe; | |
| 30 class BlobChannelReceiver; | 24 class BlobChannelReceiver; |
| 31 class BrowserConnectionHandler; | |
| 32 class ClientConnectionManager; | |
| 33 class HeliumBlobReceiverDelegate; | 25 class HeliumBlobReceiverDelegate; |
| 34 class ThreadPipeManager; | 26 class ThreadPipeManager; |
| 35 | 27 |
| 36 namespace client { | 28 namespace client { |
| 37 | 29 |
| 38 class ClientNetworkComponents; | 30 class ClientNetworkComponents; |
| 39 class GeolocationFeature; | 31 class GeolocationFeature; |
| 40 class NavigationFeature; | 32 class NavigationFeature; |
| 41 class ImeFeature; | 33 class ImeFeature; |
| 42 class RenderWidgetFeature; | 34 class RenderWidgetFeature; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 | 116 |
| 125 base::WeakPtrFactory<BlimpClientSession> weak_factory_; | 117 base::WeakPtrFactory<BlimpClientSession> weak_factory_; |
| 126 | 118 |
| 127 DISALLOW_COPY_AND_ASSIGN(BlimpClientSession); | 119 DISALLOW_COPY_AND_ASSIGN(BlimpClientSession); |
| 128 }; | 120 }; |
| 129 | 121 |
| 130 } // namespace client | 122 } // namespace client |
| 131 } // namespace blimp | 123 } // namespace blimp |
| 132 | 124 |
| 133 #endif // BLIMP_CLIENT_APP_SESSION_BLIMP_CLIENT_SESSION_H_ | 125 #endif // BLIMP_CLIENT_APP_SESSION_BLIMP_CLIENT_SESSION_H_ |
| OLD | NEW |