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

Side by Side Diff: chrome/browser/devtools/devtools_embedder_message_dispatcher.h

Issue 967513002: DevTools: do not use debug target when loading URLs for the front-end (chrome side). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@t5
Patch Set: = 0 for pure virtual Created 5 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
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_embedder_message_dispatcher.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 virtual void AddFileSystem(int request_id) = 0; 50 virtual void AddFileSystem(int request_id) = 0;
51 virtual void RemoveFileSystem(int request_id, 51 virtual void RemoveFileSystem(int request_id,
52 const std::string& file_system_path) = 0; 52 const std::string& file_system_path) = 0;
53 virtual void UpgradeDraggedFileSystemPermissions( 53 virtual void UpgradeDraggedFileSystemPermissions(
54 int request_id, 54 int request_id,
55 const std::string& file_system_url) = 0; 55 const std::string& file_system_url) = 0;
56 virtual void IndexPath(int request_id, 56 virtual void IndexPath(int request_id,
57 int index_request_id, 57 int index_request_id,
58 const std::string& file_system_path) = 0; 58 const std::string& file_system_path) = 0;
59 virtual void StopIndexing(int request_id, int index_request_id) = 0; 59 virtual void StopIndexing(int request_id, int index_request_id) = 0;
60 virtual void LoadNetworkResource(int request_id,
61 const std::string& url,
62 const std::string& headers,
63 int stream_id) = 0;
60 virtual void SearchInPath(int request_id, 64 virtual void SearchInPath(int request_id,
61 int search_request_id, 65 int search_request_id,
62 const std::string& file_system_path, 66 const std::string& file_system_path,
63 const std::string& query) = 0; 67 const std::string& query) = 0;
64 virtual void SetWhitelistedShortcuts(int request_id, 68 virtual void SetWhitelistedShortcuts(int request_id,
65 const std::string& message) = 0; 69 const std::string& message) = 0;
66 virtual void ZoomIn(int request_id) = 0; 70 virtual void ZoomIn(int request_id) = 0;
67 virtual void ZoomOut(int request_id) = 0; 71 virtual void ZoomOut(int request_id) = 0;
68 virtual void ResetZoom(int request_id) = 0; 72 virtual void ResetZoom(int request_id) = 0;
69 virtual void OpenUrlOnRemoteDeviceAndInspect(int request_id, 73 virtual void OpenUrlOnRemoteDeviceAndInspect(int request_id,
(...skipping 11 matching lines...) Expand all
81 virtual ~DevToolsEmbedderMessageDispatcher() {} 85 virtual ~DevToolsEmbedderMessageDispatcher() {}
82 virtual bool Dispatch(int request_id, 86 virtual bool Dispatch(int request_id,
83 const std::string& method, 87 const std::string& method,
84 const base::ListValue* params) = 0; 88 const base::ListValue* params) = 0;
85 89
86 static DevToolsEmbedderMessageDispatcher* CreateForDevToolsFrontend( 90 static DevToolsEmbedderMessageDispatcher* CreateForDevToolsFrontend(
87 Delegate* delegate); 91 Delegate* delegate);
88 }; 92 };
89 93
90 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ 94 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_embedder_message_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698