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

Side by Side Diff: content/public/browser/web_contents_delegate.cc

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « content/public/browser/web_contents.h ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/public/browser/web_contents_delegate.h" 5 #include "content/public/browser/web_contents_delegate.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/memory/singleton.h" 9 #include "base/memory/singleton.h"
10 #include "content/public/browser/render_view_host.h" 10 #include "content/public/browser/render_view_host.h"
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 content::ColorChooser* WebContentsDelegate::OpenColorChooser( 135 content::ColorChooser* WebContentsDelegate::OpenColorChooser(
136 WebContents* web_contents, 136 WebContents* web_contents,
137 int color_chooser_id, 137 int color_chooser_id,
138 SkColor color) { 138 SkColor color) {
139 return NULL; 139 return NULL;
140 } 140 }
141 141
142 bool WebContentsDelegate::RequestPpapiBrokerPermission( 142 bool WebContentsDelegate::RequestPpapiBrokerPermission(
143 WebContents* web_contents, 143 WebContents* web_contents,
144 const GURL& url, 144 const GURL& url,
145 const FilePath& plugin_path, 145 const base::FilePath& plugin_path,
146 const base::Callback<void(bool)>& callback) { 146 const base::Callback<void(bool)>& callback) {
147 return false; 147 return false;
148 } 148 }
149 149
150 WebContentsDelegate::~WebContentsDelegate() { 150 WebContentsDelegate::~WebContentsDelegate() {
151 while (!attached_contents_.empty()) { 151 while (!attached_contents_.empty()) {
152 WebContents* web_contents = *attached_contents_.begin(); 152 WebContents* web_contents = *attached_contents_.begin();
153 web_contents->SetDelegate(NULL); 153 web_contents->SetDelegate(NULL);
154 } 154 }
155 DCHECK(attached_contents_.empty()); 155 DCHECK(attached_contents_.empty());
156 } 156 }
157 157
158 void WebContentsDelegate::Attach(WebContents* web_contents) { 158 void WebContentsDelegate::Attach(WebContents* web_contents) {
159 DCHECK(attached_contents_.find(web_contents) == attached_contents_.end()); 159 DCHECK(attached_contents_.find(web_contents) == attached_contents_.end());
160 attached_contents_.insert(web_contents); 160 attached_contents_.insert(web_contents);
161 } 161 }
162 162
163 void WebContentsDelegate::Detach(WebContents* web_contents) { 163 void WebContentsDelegate::Detach(WebContents* web_contents) {
164 DCHECK(attached_contents_.find(web_contents) != attached_contents_.end()); 164 DCHECK(attached_contents_.find(web_contents) != attached_contents_.end());
165 attached_contents_.erase(web_contents); 165 attached_contents_.erase(web_contents);
166 } 166 }
167 167
168 } // namespace content 168 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/web_contents.h ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698