| 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 #include "blimp/client/session/blimp_client_session_linux.h" | 5 #include "blimp/client/app/linux/blimp_client_session_linux.h" |
| 6 |
| 7 #include <string> |
| 6 | 8 |
| 7 #include "base/logging.h" | 9 #include "base/logging.h" |
| 8 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 9 #include "blimp/client/linux/blimp_display_manager.h" | 11 #include "blimp/client/app/linux/blimp_display_manager.h" |
| 10 #include "ui/events/platform/platform_event_source.h" | 12 #include "ui/events/platform/platform_event_source.h" |
| 11 #include "ui/gfx/geometry/size.h" | 13 #include "ui/gfx/geometry/size.h" |
| 12 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 13 | 15 |
| 14 namespace blimp { | 16 namespace blimp { |
| 15 namespace client { | 17 namespace client { |
| 16 namespace { | 18 namespace { |
| 17 | 19 |
| 18 const int kDummyTabId = 0; | 20 const int kDummyTabId = 0; |
| 19 | 21 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 } | 71 } |
| 70 | 72 |
| 71 BlimpClientSessionLinux::~BlimpClientSessionLinux() {} | 73 BlimpClientSessionLinux::~BlimpClientSessionLinux() {} |
| 72 | 74 |
| 73 void BlimpClientSessionLinux::OnClosed() { | 75 void BlimpClientSessionLinux::OnClosed() { |
| 74 base::MessageLoop::current()->QuitNow(); | 76 base::MessageLoop::current()->QuitNow(); |
| 75 } | 77 } |
| 76 | 78 |
| 77 } // namespace client | 79 } // namespace client |
| 78 } // namespace blimp | 80 } // namespace blimp |
| OLD | NEW |