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

Side by Side Diff: content/shell/shell_content_browser_client.cc

Issue 9566001: Hide MHTMLGenerationManager from chrome. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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) 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/shell/shell_content_browser_client.h" 5 #include "content/shell/shell_content_browser_client.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "content/shell/shell.h" 9 #include "content/shell/shell.h"
10 #include "content/shell/shell_browser_main.h" 10 #include "content/shell/shell_browser_main.h"
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 272
273 SpeechInputManagerDelegate* 273 SpeechInputManagerDelegate*
274 ShellContentBrowserClient::GetSpeechInputManagerDelegate() { 274 ShellContentBrowserClient::GetSpeechInputManagerDelegate() {
275 return NULL; 275 return NULL;
276 } 276 }
277 277
278 ui::Clipboard* ShellContentBrowserClient::GetClipboard() { 278 ui::Clipboard* ShellContentBrowserClient::GetClipboard() {
279 return shell_browser_main_parts_->GetClipboard(); 279 return shell_browser_main_parts_->GetClipboard();
280 } 280 }
281 281
282 MHTMLGenerationManager* ShellContentBrowserClient::GetMHTMLGenerationManager() {
283 return NULL;
284 }
285
286 net::NetLog* ShellContentBrowserClient::GetNetLog() { 282 net::NetLog* ShellContentBrowserClient::GetNetLog() {
287 return NULL; 283 return NULL;
288 } 284 }
289 285
290 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { 286 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() {
291 return NULL; 287 return NULL;
292 } 288 }
293 289
294 bool ShellContentBrowserClient::IsFastShutdownPossible() { 290 bool ShellContentBrowserClient::IsFastShutdownPossible() {
295 return true; 291 return true;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 #endif 338 #endif
343 339
344 #if defined(USE_NSS) 340 #if defined(USE_NSS)
345 crypto::CryptoModuleBlockingPasswordDelegate* 341 crypto::CryptoModuleBlockingPasswordDelegate*
346 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 342 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
347 return NULL; 343 return NULL;
348 } 344 }
349 #endif 345 #endif
350 346
351 } // namespace content 347 } // namespace content
OLDNEW
« content/public/browser/web_contents.h ('K') | « content/shell/shell_content_browser_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698