| 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_SESSION_NAVIGATION_FEATURE_H_ | 5 #ifndef BLIMP_CLIENT_FEATURE_NAVIGATION_FEATURE_H_ |
| 6 #define BLIMP_CLIENT_SESSION_NAVIGATION_FEATURE_H_ | 6 #define BLIMP_CLIENT_FEATURE_NAVIGATION_FEATURE_H_ |
| 7 |
| 8 #include <map> |
| 9 #include <string> |
| 7 | 10 |
| 8 #include "base/containers/small_map.h" | 11 #include "base/containers/small_map.h" |
| 9 #include "base/macros.h" | 12 #include "base/macros.h" |
| 10 #include "blimp/client/blimp_client_export.h" | 13 #include "blimp/client/blimp_client_export.h" |
| 11 #include "blimp/net/blimp_message_processor.h" | 14 #include "blimp/net/blimp_message_processor.h" |
| 12 | 15 |
| 13 class GURL; | 16 class GURL; |
| 14 class SkBitmap; | 17 class SkBitmap; |
| 15 | 18 |
| 16 namespace blimp { | 19 namespace blimp { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 65 |
| 63 // Used to send BlimpMessage::NAVIGATION messages to the engine. | 66 // Used to send BlimpMessage::NAVIGATION messages to the engine. |
| 64 scoped_ptr<BlimpMessageProcessor> outgoing_message_processor_; | 67 scoped_ptr<BlimpMessageProcessor> outgoing_message_processor_; |
| 65 | 68 |
| 66 DISALLOW_COPY_AND_ASSIGN(NavigationFeature); | 69 DISALLOW_COPY_AND_ASSIGN(NavigationFeature); |
| 67 }; | 70 }; |
| 68 | 71 |
| 69 } // namespace client | 72 } // namespace client |
| 70 } // namespace blimp | 73 } // namespace blimp |
| 71 | 74 |
| 72 #endif // BLIMP_CLIENT_SESSION_NAVIGATION_FEATURE_H_ | 75 #endif // BLIMP_CLIENT_FEATURE_NAVIGATION_FEATURE_H_ |
| OLD | NEW |