diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-12 22:37:38 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-12 22:37:38 +0000 |
commit | 2dd50820df6d5c39fbb3f1fc1f1b8a29c30b9d72 (patch) | |
tree | a7e06fb3fd773206ef652d3b12972b321f00f2f6 /chrome/browser | |
parent | 2141858324fd45ece7d3e96c60145a71e493fbe0 (diff) | |
download | chromium_src-2dd50820df6d5c39fbb3f1fc1f1b8a29c30b9d72.zip chromium_src-2dd50820df6d5c39fbb3f1fc1f1b8a29c30b9d72.tar.gz chromium_src-2dd50820df6d5c39fbb3f1fc1f1b8a29c30b9d72.tar.bz2 |
Minor cleanup of RootView. Removes unused double_buffered field from
RootView, as well as renaming RootView::ProcessPendingPaint to PaintNow.
BUG=1255929
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@750 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/external_tab_container.cc | 2 | ||||
-rw-r--r-- | chrome/browser/native_ui_contents.cc | 2 | ||||
-rw-r--r-- | chrome/browser/vista_frame.cc | 2 | ||||
-rw-r--r-- | chrome/browser/xp_frame.cc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/external_tab_container.cc b/chrome/browser/external_tab_container.cc index 4ec21f6..ad872d9 100644 --- a/chrome/browser/external_tab_container.cc +++ b/chrome/browser/external_tab_container.cc @@ -47,7 +47,7 @@ static const wchar_t kWindowObjectKey[] = L"ChromeWindowObject"; ExternalTabContainer::ExternalTabContainer( AutomationProvider* automation) : automation_(automation), - root_view_(this, true), + root_view_(this), tab_contents_(NULL), external_accel_table_(NULL), external_accel_entry_count_(0), diff --git a/chrome/browser/native_ui_contents.cc b/chrome/browser/native_ui_contents.cc index 3988ae0..e9965dd 100644 --- a/chrome/browser/native_ui_contents.cc +++ b/chrome/browser/native_ui_contents.cc @@ -97,7 +97,7 @@ namespace { class NativeRootView : public ChromeViews::RootView { public: explicit NativeRootView(NativeUIContents* host) - : RootView(host, true), + : RootView(host), host_(host) { } virtual ~NativeRootView() { } diff --git a/chrome/browser/vista_frame.cc b/chrome/browser/vista_frame.cc index 2dba77f..2a910ff 100644 --- a/chrome/browser/vista_frame.cc +++ b/chrome/browser/vista_frame.cc @@ -140,7 +140,7 @@ VistaFrame* VistaFrame::CreateFrame(const gfx::Rect& bounds, VistaFrame::VistaFrame(Browser* browser) : browser_(browser), - root_view_(this, true), + root_view_(this), tabstrip_(NULL), active_bookmark_bar_(NULL), tab_contents_container_(NULL), diff --git a/chrome/browser/xp_frame.cc b/chrome/browser/xp_frame.cc index e9e69dd..dadab61 100644 --- a/chrome/browser/xp_frame.cc +++ b/chrome/browser/xp_frame.cc @@ -339,7 +339,7 @@ XPFrame* XPFrame::CreateFrame(const gfx::Rect& bounds, XPFrame::XPFrame(Browser* browser) : browser_(browser), - root_view_(this, true), + root_view_(this), frame_view_(NULL), tabstrip_(NULL), active_bookmark_bar_(NULL), |