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

Side by Side Diff: chrome/browser/infobars/infobar_delegate.cc

Issue 8983010: Convert WebContents to return a content::NavigationController instead of the implementation. Upda... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 11 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/browser/infobars/infobar_delegate.h" 5 #include "chrome/browser/infobars/infobar_delegate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/browser/infobars/infobar_tab_helper.h" 9 #include "chrome/browser/infobars/infobar_tab_helper.h"
10 #include "content/browser/tab_contents/navigation_controller.h" 10 #include "content/public/browser/navigation_controller.h"
11 #include "content/public/browser/navigation_details.h" 11 #include "content/public/browser/navigation_details.h"
12 #include "content/public/browser/navigation_entry.h" 12 #include "content/public/browser/navigation_entry.h"
13 #include "content/public/browser/web_contents.h" 13 #include "content/public/browser/web_contents.h"
14 14
15 using content::NavigationEntry; 15 using content::NavigationEntry;
16 16
17 // InfoBarDelegate ------------------------------------------------------------ 17 // InfoBarDelegate ------------------------------------------------------------
18 18
19 InfoBarDelegate::~InfoBarDelegate() { 19 InfoBarDelegate::~InfoBarDelegate() {
20 } 20 }
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 return (contents_unique_id_ != details.entry->GetUniqueID()) || 96 return (contents_unique_id_ != details.entry->GetUniqueID()) ||
97 (content::PageTransitionStripQualifier( 97 (content::PageTransitionStripQualifier(
98 details.entry->GetTransitionType()) == 98 details.entry->GetTransitionType()) ==
99 content::PAGE_TRANSITION_RELOAD); 99 content::PAGE_TRANSITION_RELOAD);
100 } 100 }
101 101
102 void InfoBarDelegate::RemoveSelf() { 102 void InfoBarDelegate::RemoveSelf() {
103 if (owner_) 103 if (owner_)
104 owner_->RemoveInfoBar(this); // Clears |owner_|. 104 owner_->RemoveInfoBar(this); // Clears |owner_|.
105 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698