diff options
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.h b/chrome/browser/tab_contents/tab_contents.h index 20cfe3c..55714db 100644 --- a/chrome/browser/tab_contents/tab_contents.h +++ b/chrome/browser/tab_contents/tab_contents.h @@ -202,7 +202,7 @@ class TabContents : public PageNavigator, // If an app extension has been explicitly set for this TabContents its icon // is returned. // - // NOTE: the returned icon is larger than 16x16 (it's size is + // NOTE: the returned icon is larger than 16x16 (its size is // Extension::EXTENSION_ICON_SMALLISH). SkBitmap* GetExtensionAppIcon(); @@ -267,8 +267,6 @@ class TabContents : public PageNavigator, // "waiting" or "loading." bool waiting_for_response() const { return waiting_for_response_; } - bool is_starred() const { return is_starred_; } - const std::string& encoding() const { return encoding_; } void set_encoding(const std::string& encoding); void reset_encoding() { @@ -832,10 +830,6 @@ class TabContents : public PageNavigator, // Closes all constrained windows. void CloseConstrainedWindows(); - // Updates the starred state from the bookmark bar model. If the state has - // changed, the delegate is notified. - void UpdateStarredStateForCurrentURL(); - // Send the alternate error page URL to the renderer. This method is virtual // so special html pages can override this (e.g., the new tab page). virtual void UpdateAlternateErrorPageURL(); @@ -1138,9 +1132,6 @@ class TabContents : public PageNavigator, // messages. bool received_page_title_; - // Whether the current URL is starred - bool is_starred_; - // When a navigation occurs, we record its contents MIME type. It can be // used to check whether we can do something for some special contents. std::string contents_mime_type_; |