| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "chrome/browser/devtools/devtools_toggle_action.h" | 11 #include "chrome/browser/devtools/devtools_toggle_action.h" |
| 12 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" | 12 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" |
| 13 #include "components/security_state/security_state_model.h" | 13 #include "components/security_state/core/security_state_model.h" |
| 14 #include "content/public/common/page_zoom.h" | 14 #include "content/public/common/page_zoom.h" |
| 15 #include "ui/base/window_open_disposition.h" | 15 #include "ui/base/window_open_disposition.h" |
| 16 | 16 |
| 17 class Browser; | 17 class Browser; |
| 18 class CommandObserver; | 18 class CommandObserver; |
| 19 class GURL; | 19 class GURL; |
| 20 class Profile; | 20 class Profile; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 class PageState; | 23 class PageState; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 void CreateApplicationShortcuts(Browser* browser); | 163 void CreateApplicationShortcuts(Browser* browser); |
| 164 void CreateBookmarkAppFromCurrentWebContents(Browser* browser); | 164 void CreateBookmarkAppFromCurrentWebContents(Browser* browser); |
| 165 bool CanCreateApplicationShortcuts(const Browser* browser); | 165 bool CanCreateApplicationShortcuts(const Browser* browser); |
| 166 bool CanCreateBookmarkApp(const Browser* browser); | 166 bool CanCreateBookmarkApp(const Browser* browser); |
| 167 | 167 |
| 168 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); | 168 void ConvertTabToAppWindow(Browser* browser, content::WebContents* contents); |
| 169 | 169 |
| 170 } // namespace chrome | 170 } // namespace chrome |
| 171 | 171 |
| 172 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ | 172 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ |
| OLD | NEW |