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

Unified Diff: content/browser/mock_content_browser_client.cc

Issue 10479023: Simplify how Content*Client interfaces are created. Instead of depending on the embedder to know wh… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove unused function declaration Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/mock_content_browser_client.cc
===================================================================
--- content/browser/mock_content_browser_client.cc (revision 140381)
+++ content/browser/mock_content_browser_client.cc (working copy)
@@ -1,40 +0,0 @@
-// Copyright (c) 2012 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 "content/browser/mock_content_browser_client.h"
-
-#include <string>
-
-#include "base/file_path.h"
-#include "base/logging.h"
-#include "content/test/test_web_contents_view.h"
-#include "googleurl/src/gurl.h"
-#include "third_party/skia/include/core/SkBitmap.h"
-#include "ui/base/clipboard/clipboard.h"
-
-namespace content {
-
-MockContentBrowserClient::MockContentBrowserClient() {
-}
-
-MockContentBrowserClient::~MockContentBrowserClient() {
-}
-
-WebContentsView* MockContentBrowserClient::OverrideCreateWebContentsView(
- WebContents* web_contents,
- RenderViewHostDelegateView** render_view_host_delegate_view) {
- TestWebContentsView* rv = new TestWebContentsView;
- *render_view_host_delegate_view = rv;
- return rv;
-}
-
-FilePath MockContentBrowserClient::GetDefaultDownloadDirectory() {
- if (!download_dir_.IsValid()) {
- bool result = download_dir_.CreateUniqueTempDir();
- CHECK(result);
- }
- return download_dir_.path();
-}
-
-} // namespace content

Powered by Google App Engine
This is Rietveld 408576698