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

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

Issue 10985041: DevTools: request page thumbnails from the devtools handler delegate, do not redirect to chrome://t… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android delegate updated. Created 8 years, 2 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_devtools_delegate.h" 5 #include "content/shell/shell_devtools_delegate.h"
6 6
7 #include "content/public/browser/devtools_http_handler.h" 7 #include "content/public/browser/devtools_http_handler.h"
8 #include "grit/shell_resources.h" 8 #include "grit/shell_resources.h"
9 #include "net/base/tcp_listen_socket.h" 9 #include "net/base/tcp_listen_socket.h"
10 #include "net/url_request/url_request_context_getter.h" 10 #include "net/url_request/url_request_context_getter.h"
(...skipping 28 matching lines...) Expand all
39 } 39 }
40 40
41 bool ShellDevToolsDelegate::BundlesFrontendResources() { 41 bool ShellDevToolsDelegate::BundlesFrontendResources() {
42 return true; 42 return true;
43 } 43 }
44 44
45 std::string ShellDevToolsDelegate::GetFrontendResourcesBaseURL() { 45 std::string ShellDevToolsDelegate::GetFrontendResourcesBaseURL() {
46 return ""; 46 return "";
47 } 47 }
48 48
49
50 std::string ShellDevToolsDelegate::GetPageThumbnailData(const GURL& url) {
51 return "";
52 }
53
49 } // namespace content 54 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/shell_devtools_delegate.h ('k') | content/shell/shell_devtools_delegate_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698