| 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> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "components/guest_view/browser/guest_view.h" | 11 #include "components/guest_view/browser/guest_view.h" |
| 10 #include "extensions/browser/guest_view/extension_options/extension_options_gues
t_delegate.h" | 12 #include "extensions/browser/guest_view/extension_options/extension_options_gues
t_delegate.h" |
| 11 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 12 | 14 |
| 13 namespace content { | 15 namespace content { |
| 14 class BrowserContext; | 16 class BrowserContext; |
| 15 } | 17 } |
| 16 | 18 |
| 17 namespace extensions { | 19 namespace extensions { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 scoped_ptr<extensions::ExtensionOptionsGuestDelegate> | 65 scoped_ptr<extensions::ExtensionOptionsGuestDelegate> |
| 64 extension_options_guest_delegate_; | 66 extension_options_guest_delegate_; |
| 65 GURL options_page_; | 67 GURL options_page_; |
| 66 | 68 |
| 67 DISALLOW_COPY_AND_ASSIGN(ExtensionOptionsGuest); | 69 DISALLOW_COPY_AND_ASSIGN(ExtensionOptionsGuest); |
| 68 }; | 70 }; |
| 69 | 71 |
| 70 } // namespace extensions | 72 } // namespace extensions |
| 71 | 73 |
| 72 #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 |