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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1890513004: Remove dependency on the DevTools agent for console logs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
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 CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 void OnSelectAll(); 746 void OnSelectAll();
747 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); 747 void OnSelectRange(const gfx::Point& base, const gfx::Point& extent);
748 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust); 748 void OnAdjustSelectionByCharacterOffset(int start_adjust, int end_adjust);
749 void OnUnselect(); 749 void OnUnselect();
750 void OnMoveRangeSelectionExtent(const gfx::Point& point); 750 void OnMoveRangeSelectionExtent(const gfx::Point& point);
751 void OnReplace(const base::string16& text); 751 void OnReplace(const base::string16& text);
752 void OnReplaceMisspelling(const base::string16& text); 752 void OnReplaceMisspelling(const base::string16& text);
753 void OnCSSInsertRequest(const std::string& css); 753 void OnCSSInsertRequest(const std::string& css);
754 void OnAddMessageToConsole(ConsoleMessageLevel level, 754 void OnAddMessageToConsole(ConsoleMessageLevel level,
755 const std::string& message); 755 const std::string& message);
756 void OnAddSecurityMessageToConsole(ConsoleMessageLevel level,
757 const std::string& message);
756 void OnJavaScriptExecuteRequest(const base::string16& javascript, 758 void OnJavaScriptExecuteRequest(const base::string16& javascript,
757 int id, 759 int id,
758 bool notify_result); 760 bool notify_result);
759 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, 761 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript,
760 int id, 762 int id,
761 bool notify_result, 763 bool notify_result,
762 bool has_user_gesture); 764 bool has_user_gesture);
763 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript, 765 void OnJavaScriptExecuteRequestInIsolatedWorld(const base::string16& jscript,
764 int id, 766 int id,
765 bool notify_result, 767 bool notify_result,
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 FrameBlameContext* blame_context_; // Not owned. 1229 FrameBlameContext* blame_context_; // Not owned.
1228 1230
1229 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1231 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1230 1232
1231 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1233 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1232 }; 1234 };
1233 1235
1234 } // namespace content 1236 } // namespace content
1235 1237
1236 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1238 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698