Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: chrome/browser/tab_contents_wrapper.cc

Issue 4694008: Make pink's TabContentsWrapper change compile on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents_wrapper.cc
===================================================================
--- chrome/browser/tab_contents_wrapper.cc (revision 0)
+++ chrome/browser/tab_contents_wrapper.cc (revision 0)
@@ -0,0 +1,49 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/tab_contents_wrapper.h"
+
+#include "chrome/browser/password_manager/password_manager.h"
+#include "chrome/browser/password_manager_delegate_impl.h"
+#include "chrome/browser/tab_contents/tab_contents.h"
+
+
+TabContentsWrapper::TabContentsWrapper(TabContents* contents)
+ : tab_contents_(contents) {
+ DCHECK(contents);
+ // Stash this in the property bag so it can be retrieved without having to
+ // go to a Browser.
+ property_accessor()->SetProperty(contents->property_bag(), this);
+}
+
+TabContentsWrapper::~TabContentsWrapper() {
+ // Unregister observers (TabContents outlives supporting objects).
+ tab_contents()->RemoveNavigationObserver(password_manager_.get());
+}
+
+PropertyAccessor<TabContentsWrapper*>* TabContentsWrapper::property_accessor() {
+ return Singleton< PropertyAccessor<TabContentsWrapper*> >::get();
+}
+
+PasswordManager* TabContentsWrapper::GetPasswordManager() {
+ if (!password_manager_.get()) {
+ // Create the delegate then create the manager.
+ password_manager_delegate_.reset(
+ new PasswordManagerDelegateImpl(tab_contents()));
+ password_manager_.reset(
+ new PasswordManager(password_manager_delegate_.get()));
+ // Register the manager to receive navigation notifications.
+ tab_contents()->AddNavigationObserver(password_manager_.get());
+ }
+ return password_manager_.get();
+}
+
+TabContentsWrapper* TabContentsWrapper::Clone() {
+ TabContents* new_contents = tab_contents()->Clone();
+ TabContentsWrapper* new_wrapper = new TabContentsWrapper(new_contents);
+ // Instantiate the passowrd manager if it has been instantiated here.
+ if (password_manager_.get())
+ new_wrapper->GetPasswordManager();
+ return new_wrapper;
+}

Powered by Google App Engine
This is Rietveld 408576698