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

Side by Side Diff: chrome/browser/renderer_host/render_view_host.h

Issue 343075: DevTools: support cross-navigation instrumentation. (Closed)
Patch Set: '' Created 11 years, 1 month 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_RENDERER_HOST_RENDER_VIEW_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 const std::wstring& source_id); 547 const std::wstring& source_id);
548 548
549 void OnUpdateInspectorSettings(const std::string& raw_settings); 549 void OnUpdateInspectorSettings(const std::string& raw_settings);
550 void OnForwardToDevToolsAgent(const IPC::Message& message); 550 void OnForwardToDevToolsAgent(const IPC::Message& message);
551 void OnForwardToDevToolsClient(const IPC::Message& message); 551 void OnForwardToDevToolsClient(const IPC::Message& message);
552 void OnActivateDevToolsWindow(); 552 void OnActivateDevToolsWindow();
553 void OnCloseDevToolsWindow(); 553 void OnCloseDevToolsWindow();
554 void OnDockDevToolsWindow(); 554 void OnDockDevToolsWindow();
555 void OnUndockDevToolsWindow(); 555 void OnUndockDevToolsWindow();
556 void OnToggleInspectElementMode(bool enabled); 556 void OnToggleInspectElementMode(bool enabled);
557 void OnDevToolsRuntimeFeatureStateChanged(const std::string& feature,
558 bool enabled);
557 559
558 void OnUserMetricsRecordAction(const std::wstring& action); 560 void OnUserMetricsRecordAction(const std::wstring& action);
559 void OnMissingPluginStatus(int status); 561 void OnMissingPluginStatus(int status);
560 void OnCrashedPlugin(const FilePath& plugin_path); 562 void OnCrashedPlugin(const FilePath& plugin_path);
561 563
562 void OnReceivedSavableResourceLinksForCurrentPage( 564 void OnReceivedSavableResourceLinksForCurrentPage(
563 const std::vector<GURL>& resources_list, 565 const std::vector<GURL>& resources_list,
564 const std::vector<GURL>& referrers_list, 566 const std::vector<GURL>& referrers_list,
565 const std::vector<GURL>& frames_list); 567 const std::vector<GURL>& frames_list);
566 568
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 // While in this mode, mouse click is converted into InspectElement 662 // While in this mode, mouse click is converted into InspectElement
661 // command. 663 // command.
662 bool in_inspect_element_mode_; 664 bool in_inspect_element_mode_;
663 665
664 NotificationRegistrar registrar_; 666 NotificationRegistrar registrar_;
665 667
666 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); 668 DISALLOW_COPY_AND_ASSIGN(RenderViewHost);
667 }; 669 };
668 670
669 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 671 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_manager.cc ('k') | chrome/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698