OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_TAB_CONTENTS_TAB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 return view_.get(); | 187 return view_.get(); |
188 } | 188 } |
189 | 189 |
190 // Returns the FavIconHelper of this TabContents. | 190 // Returns the FavIconHelper of this TabContents. |
191 FavIconHelper& fav_icon_helper() { | 191 FavIconHelper& fav_icon_helper() { |
192 return fav_icon_helper_; | 192 return fav_icon_helper_; |
193 } | 193 } |
194 | 194 |
195 // App extensions ------------------------------------------------------------ | 195 // App extensions ------------------------------------------------------------ |
196 | 196 |
| 197 // Returns whether this tab is showing either a hosted or packaged app. |
| 198 bool IsInstalledApp() const; |
| 199 |
| 200 // TODO(creis): The app-tab functions below are deprecated and should be |
| 201 // removed. |
| 202 |
197 // Sets the extension denoting this as an app. If |extension| is non-null this | 203 // Sets the extension denoting this as an app. If |extension| is non-null this |
198 // tab becomes an app-tab. TabContents does not listen for unload events for | 204 // tab becomes an app-tab. TabContents does not listen for unload events for |
199 // the extension. It's up to consumers of TabContents to do that. | 205 // the extension. It's up to consumers of TabContents to do that. |
200 // | 206 // |
201 // NOTE: this should only be manipulated before the tab is added to a browser. | 207 // NOTE: this should only be manipulated before the tab is added to a browser. |
202 // TODO(sky): resolve if this is the right way to identify an app tab. If it | 208 // TODO(sky): resolve if this is the right way to identify an app tab. If it |
203 // is, than this should be passed in the constructor. | 209 // is, than this should be passed in the constructor. |
204 void SetExtensionApp(const Extension* extension); | 210 void SetExtensionApp(const Extension* extension); |
205 | 211 |
206 // Convenience for setting the app extension by id. This does nothing if | 212 // Convenience for setting the app extension by id. This does nothing if |
207 // |extension_app_id| is empty, or an extension can't be found given the | 213 // |extension_app_id| is empty, or an extension can't be found given the |
208 // specified id. | 214 // specified id. |
209 void SetExtensionAppById(const std::string& extension_app_id); | 215 void SetExtensionAppById(const std::string& extension_app_id); |
210 | 216 |
211 const Extension* extension_app() const { return extension_app_; } | 217 const Extension* extension_app() const { return extension_app_; } |
| 218 |
| 219 // Returns whether this tab is an app-tab (deprecated). |
212 bool is_app() const { return extension_app_ != NULL; } | 220 bool is_app() const { return extension_app_ != NULL; } |
213 | 221 |
214 // If an app extension has been explicitly set for this TabContents its icon | 222 // If an app extension has been explicitly set for this TabContents its icon |
215 // is returned. | 223 // is returned. |
216 // | 224 // |
217 // NOTE: the returned icon is larger than 16x16 (it's size is | 225 // NOTE: the returned icon is larger than 16x16 (it's size is |
218 // Extension::EXTENSION_ICON_SMALLISH). | 226 // Extension::EXTENSION_ICON_SMALLISH). |
219 SkBitmap* GetExtensionAppIcon(); | 227 SkBitmap* GetExtensionAppIcon(); |
220 | 228 |
221 // Tab navigation state ------------------------------------------------------ | 229 // Tab navigation state ------------------------------------------------------ |
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 // Content restrictions, used to disable print/copy etc based on content's | 1317 // Content restrictions, used to disable print/copy etc based on content's |
1310 // (full-page plugins for now only) permissions. | 1318 // (full-page plugins for now only) permissions. |
1311 int content_restrictions_; | 1319 int content_restrictions_; |
1312 | 1320 |
1313 // --------------------------------------------------------------------------- | 1321 // --------------------------------------------------------------------------- |
1314 | 1322 |
1315 DISALLOW_COPY_AND_ASSIGN(TabContents); | 1323 DISALLOW_COPY_AND_ASSIGN(TabContents); |
1316 }; | 1324 }; |
1317 | 1325 |
1318 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ | 1326 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ |
OLD | NEW |