OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 void OnForwardToDevToolsClient(const IPC::Message& message); | 590 void OnForwardToDevToolsClient(const IPC::Message& message); |
591 void OnActivateDevToolsWindow(); | 591 void OnActivateDevToolsWindow(); |
592 void OnCloseDevToolsWindow(); | 592 void OnCloseDevToolsWindow(); |
593 void OnRequestDockDevToolsWindow(); | 593 void OnRequestDockDevToolsWindow(); |
594 void OnRequestUndockDevToolsWindow(); | 594 void OnRequestUndockDevToolsWindow(); |
595 void OnDevToolsRuntimeFeatureStateChanged(const std::string& feature, | 595 void OnDevToolsRuntimeFeatureStateChanged(const std::string& feature, |
596 bool enabled); | 596 bool enabled); |
597 | 597 |
598 void OnUserMetricsRecordAction(const std::string& action); | 598 void OnUserMetricsRecordAction(const std::string& action); |
599 void OnMissingPluginStatus(int status); | 599 void OnMissingPluginStatus(int status); |
| 600 void OnNonSandboxedPluginBlocked(const string16& name); |
| 601 void OnBlockedPluginLoaded(); |
600 void OnCrashedPlugin(const FilePath& plugin_path); | 602 void OnCrashedPlugin(const FilePath& plugin_path); |
601 | 603 |
602 void OnReceivedSavableResourceLinksForCurrentPage( | 604 void OnReceivedSavableResourceLinksForCurrentPage( |
603 const std::vector<GURL>& resources_list, | 605 const std::vector<GURL>& resources_list, |
604 const std::vector<GURL>& referrers_list, | 606 const std::vector<GURL>& referrers_list, |
605 const std::vector<GURL>& frames_list); | 607 const std::vector<GURL>& frames_list); |
606 | 608 |
607 void OnReceivedSerializedHtmlData(const GURL& frame_url, | 609 void OnReceivedSerializedHtmlData(const GURL& frame_url, |
608 const std::string& data, | 610 const std::string& data, |
609 int32 status); | 611 int32 status); |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 int autofill_query_id_; | 733 int autofill_query_id_; |
732 std::vector<string16> autofill_values_; | 734 std::vector<string16> autofill_values_; |
733 std::vector<string16> autofill_labels_; | 735 std::vector<string16> autofill_labels_; |
734 std::vector<string16> autofill_icons_; | 736 std::vector<string16> autofill_icons_; |
735 std::vector<int> autofill_unique_ids_; | 737 std::vector<int> autofill_unique_ids_; |
736 | 738 |
737 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 739 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
738 }; | 740 }; |
739 | 741 |
740 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 742 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |