| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 6 #define CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 6 #define CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/macros.h" |
| 10 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 11 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
| 11 | 12 |
| 12 namespace content { | 13 namespace content { |
| 13 | 14 |
| 14 class ShellResourceDispatcherHostDelegate | 15 class ShellResourceDispatcherHostDelegate |
| 15 : public ResourceDispatcherHostDelegate { | 16 : public ResourceDispatcherHostDelegate { |
| 16 public: | 17 public: |
| 17 ShellResourceDispatcherHostDelegate(); | 18 ShellResourceDispatcherHostDelegate(); |
| 18 ~ShellResourceDispatcherHostDelegate() override; | 19 ~ShellResourceDispatcherHostDelegate() override; |
| 19 | 20 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 30 | 31 |
| 31 private: | 32 private: |
| 32 base::Callback<void()> login_request_callback_; | 33 base::Callback<void()> login_request_callback_; |
| 33 | 34 |
| 34 DISALLOW_COPY_AND_ASSIGN(ShellResourceDispatcherHostDelegate); | 35 DISALLOW_COPY_AND_ASSIGN(ShellResourceDispatcherHostDelegate); |
| 35 }; | 36 }; |
| 36 | 37 |
| 37 } // namespace content | 38 } // namespace content |
| 38 | 39 |
| 39 #endif // CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ | 40 #endif // CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| OLD | NEW |