| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ | 6 #define BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "content/public/browser/content_browser_client.h" | 9 #include "content/public/browser/content_browser_client.h" |
| 10 | 10 |
| 11 namespace content { | |
| 12 class GeolocationDelegate; | |
| 13 } // namespace content | |
| 14 | |
| 15 namespace blimp { | 11 namespace blimp { |
| 16 namespace engine { | 12 namespace engine { |
| 17 | 13 |
| 18 class BlimpBrowserMainParts; | 14 class BlimpBrowserMainParts; |
| 19 class BlimpBrowserContext; | 15 class BlimpBrowserContext; |
| 20 | 16 |
| 21 class BlimpContentBrowserClient : public content::ContentBrowserClient { | 17 class BlimpContentBrowserClient : public content::ContentBrowserClient { |
| 22 public: | 18 public: |
| 23 BlimpContentBrowserClient(); | 19 BlimpContentBrowserClient(); |
| 24 ~BlimpContentBrowserClient() override; | 20 ~BlimpContentBrowserClient() override; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 44 // Owned by BrowserMainLoop | 40 // Owned by BrowserMainLoop |
| 45 BlimpBrowserMainParts* blimp_browser_main_parts_ = nullptr; | 41 BlimpBrowserMainParts* blimp_browser_main_parts_ = nullptr; |
| 46 | 42 |
| 47 DISALLOW_COPY_AND_ASSIGN(BlimpContentBrowserClient); | 43 DISALLOW_COPY_AND_ASSIGN(BlimpContentBrowserClient); |
| 48 }; | 44 }; |
| 49 | 45 |
| 50 } // namespace engine | 46 } // namespace engine |
| 51 } // namespace blimp | 47 } // namespace blimp |
| 52 | 48 |
| 53 #endif // BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ | 49 #endif // BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |