| 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 MOJO_PACKAGE_MANAGER_CONTENT_HANDLER_CONNECTION_H_ | 5 #ifndef MOJO_PACKAGE_MANAGER_CONTENT_HANDLER_CONNECTION_H_ |
| 6 #define MOJO_PACKAGE_MANAGER_CONTENT_HANDLER_CONNECTION_H_ | 6 #define MOJO_PACKAGE_MANAGER_CONTENT_HANDLER_CONNECTION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" |
| 11 #include "mojo/application/public/interfaces/content_handler.mojom.h" | 14 #include "mojo/application/public/interfaces/content_handler.mojom.h" |
| 12 #include "mojo/shell/identity.h" | 15 #include "mojo/shell/identity.h" |
| 13 #include "url/gurl.h" | 16 #include "url/gurl.h" |
| 14 | 17 |
| 15 namespace mojo { | 18 namespace mojo { |
| 16 namespace shell { | 19 namespace shell { |
| 17 class ApplicationManager; | 20 class ApplicationManager; |
| 18 } | 21 } |
| 19 namespace package_manager { | 22 namespace package_manager { |
| 20 | 23 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 const uint32_t id_; | 60 const uint32_t id_; |
| 58 int ref_count_; | 61 int ref_count_; |
| 59 | 62 |
| 60 DISALLOW_COPY_AND_ASSIGN(ContentHandlerConnection); | 63 DISALLOW_COPY_AND_ASSIGN(ContentHandlerConnection); |
| 61 }; | 64 }; |
| 62 | 65 |
| 63 } // namespace package_manager | 66 } // namespace package_manager |
| 64 } // namespace mojo | 67 } // namespace mojo |
| 65 | 68 |
| 66 #endif // MOJO_PACKAGE_MANAGER_CONTENT_HANDLER_CONNECTION_H_ | 69 #endif // MOJO_PACKAGE_MANAGER_CONTENT_HANDLER_CONNECTION_H_ |
| OLD | NEW |