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

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 18799006: Extension Error Piping - Blink: Chrome Side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 (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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 const SkBitmap& bitmap, 546 const SkBitmap& bitmap,
547 const gfx::Vector2d& bitmap_offset_in_dip, 547 const gfx::Vector2d& bitmap_offset_in_dip,
548 const DragEventSourceInfo& event_info); 548 const DragEventSourceInfo& event_info);
549 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); 549 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation);
550 void OnTargetDropACK(); 550 void OnTargetDropACK();
551 void OnTakeFocus(bool reverse); 551 void OnTakeFocus(bool reverse);
552 void OnFocusedNodeChanged(bool is_editable_node); 552 void OnFocusedNodeChanged(bool is_editable_node);
553 void OnAddMessageToConsole(int32 level, 553 void OnAddMessageToConsole(int32 level,
554 const string16& message, 554 const string16& message,
555 int32 line_no, 555 int32 line_no,
556 const string16& source_id); 556 const string16& source_id,
557 const string16& stack_trace);
557 void OnUpdateInspectorSetting(const std::string& key, 558 void OnUpdateInspectorSetting(const std::string& key,
558 const std::string& value); 559 const std::string& value);
559 void OnShouldCloseACK( 560 void OnShouldCloseACK(
560 bool proceed, 561 bool proceed,
561 const base::TimeTicks& renderer_before_unload_start_time, 562 const base::TimeTicks& renderer_before_unload_start_time,
562 const base::TimeTicks& renderer_before_unload_end_time); 563 const base::TimeTicks& renderer_before_unload_end_time);
563 void OnClosePageACK(); 564 void OnClosePageACK();
564 void OnSwapOutACK(); 565 void OnSwapOutACK();
565 void OnAccessibilityNotifications( 566 void OnAccessibilityNotifications(
566 const std::vector<AccessibilityHostMsg_NotificationParams>& params); 567 const std::vector<AccessibilityHostMsg_NotificationParams>& params);
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 706 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
706 }; 707 };
707 708
708 #if defined(COMPILER_MSVC) 709 #if defined(COMPILER_MSVC)
709 #pragma warning(pop) 710 #pragma warning(pop)
710 #endif 711 #endif
711 712
712 } // namespace content 713 } // namespace content
713 714
714 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 715 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698