diff options
author | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-27 19:47:51 +0000 |
---|---|---|
committer | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-27 19:47:51 +0000 |
commit | f11695a0b2eeb605fa9f21bcf5c991ef1bcc765a (patch) | |
tree | 06a498cba9bd9bdc841498f79f2badcb72454b85 /chrome/common/temp_scaffolding_stubs.h | |
parent | 81e6378c98d0e69339302527eb1de4735d1e2c3f (diff) | |
download | chromium_src-f11695a0b2eeb605fa9f21bcf5c991ef1bcc765a.zip chromium_src-f11695a0b2eeb605fa9f21bcf5c991ef1bcc765a.tar.gz chromium_src-f11695a0b2eeb605fa9f21bcf5c991ef1bcc765a.tar.bz2 |
Add "stop" image to project. Clean up project so app/theme is a proper group and its children could be relative to it rather than their grandparent. Plumb loading status into Mac controllers. Add more loading status info to stub TabContents. Make browser window a little taller and wider so NTP didn't show scrollbars.
Review URL: http://codereview.chromium.org/31017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10621 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/temp_scaffolding_stubs.h')
-rw-r--r-- | chrome/common/temp_scaffolding_stubs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h index 975ded3..1c84127 100644 --- a/chrome/common/temp_scaffolding_stubs.h +++ b/chrome/common/temp_scaffolding_stubs.h @@ -424,7 +424,7 @@ class TabContents : public PageNavigator, public NotificationObserver { }; TabContents(TabContentsType type) : type_(type), is_crashed_(false), is_active_(true), is_loading_(false), - is_being_destroyed_(false), controller_(), + is_being_destroyed_(false), waiting_for_response_(false), controller_(), delegate_(), max_page_id_(-1) { } virtual ~TabContents() { } NavigationController* controller() const { return controller_; } @@ -470,6 +470,7 @@ class TabContents : public PageNavigator, public NotificationObserver { void set_is_active(bool active) { is_active_ = active; } bool is_loading() const { return is_loading_; } bool is_being_destroyed() const { return is_being_destroyed_; } + bool waiting_for_response() const { return waiting_for_response_; } void SetNotWaitingForResponse() { NOTIMPLEMENTED(); } void NotifyNavigationStateChanged(unsigned int); TabContentsDelegate* delegate() const { return delegate_; } @@ -513,6 +514,7 @@ class TabContents : public PageNavigator, public NotificationObserver { bool is_active_; bool is_loading_; bool is_being_destroyed_; + bool waiting_for_response_; GURL url_; std::wstring title_; NavigationController* controller_; |