OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_
H_ | 5 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_
H_ |
6 #define EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_
H_ | 6 #define EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUEST_
H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 WindowContainerType window_container_type, | 55 WindowContainerType window_container_type, |
56 const std::string& frame_name, | 56 const std::string& frame_name, |
57 const GURL& target_url, | 57 const GURL& target_url, |
58 const std::string& partition_id, | 58 const std::string& partition_id, |
59 content::SessionStorageNamespace* session_storage_namespace) final; | 59 content::SessionStorageNamespace* session_storage_namespace) final; |
60 | 60 |
61 // content::WebContentsObserver implementation. | 61 // content::WebContentsObserver implementation. |
62 void DidNavigateMainFrame(const content::LoadCommittedDetails& details, | 62 void DidNavigateMainFrame(const content::LoadCommittedDetails& details, |
63 const content::FrameNavigateParams& params) final; | 63 const content::FrameNavigateParams& params) final; |
64 | 64 |
65 scoped_ptr<extensions::ExtensionOptionsGuestDelegate> | 65 std::unique_ptr<extensions::ExtensionOptionsGuestDelegate> |
66 extension_options_guest_delegate_; | 66 extension_options_guest_delegate_; |
67 GURL options_page_; | 67 GURL options_page_; |
68 | 68 |
69 DISALLOW_COPY_AND_ASSIGN(ExtensionOptionsGuest); | 69 DISALLOW_COPY_AND_ASSIGN(ExtensionOptionsGuest); |
70 }; | 70 }; |
71 | 71 |
72 } // namespace extensions | 72 } // namespace extensions |
73 | 73 |
74 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUE
ST_H_ | 74 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_EXTENSION_OPTIONS_EXTENSION_OPTIONS_GUE
ST_H_ |
OLD | NEW |