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

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

Issue 10822004: Draggable region support for frameless app window on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 8 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 | Annotate | Revision Log
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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 26 matching lines...) Expand all
37 struct ViewHostMsg_ShowPopup_Params; 37 struct ViewHostMsg_ShowPopup_Params;
38 struct ViewMsg_Navigate_Params; 38 struct ViewMsg_Navigate_Params;
39 struct ViewMsg_PostMessage_Params; 39 struct ViewMsg_PostMessage_Params;
40 struct ViewMsg_StopFinding_Params; 40 struct ViewMsg_StopFinding_Params;
41 41
42 namespace base { 42 namespace base {
43 class ListValue; 43 class ListValue;
44 } 44 }
45 45
46 namespace content { 46 namespace content {
47 struct DraggableRegion;
47 class TestRenderViewHost; 48 class TestRenderViewHost;
48 class PowerSaveBlocker; 49 class PowerSaveBlocker;
49 } 50 }
50 51
51 namespace ui { 52 namespace ui {
52 class Range; 53 class Range;
53 struct SelectedFileInfo; 54 struct SelectedFileInfo;
54 } 55 }
55 56
56 namespace content { 57 namespace content {
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 bool has_audio, 539 bool has_audio,
539 bool is_playing); 540 bool is_playing);
540 void OnRequestDesktopNotificationPermission(const GURL& origin, 541 void OnRequestDesktopNotificationPermission(const GURL& origin,
541 int callback_id); 542 int callback_id);
542 void OnShowDesktopNotification( 543 void OnShowDesktopNotification(
543 const ShowDesktopNotificationHostMsgParams& params); 544 const ShowDesktopNotificationHostMsgParams& params);
544 void OnCancelDesktopNotification(int notification_id); 545 void OnCancelDesktopNotification(int notification_id);
545 void OnRunFileChooser(const FileChooserParams& params); 546 void OnRunFileChooser(const FileChooserParams& params);
546 void OnDomOperationResponse(const std::string& json_string, 547 void OnDomOperationResponse(const std::string& json_string,
547 int automation_id); 548 int automation_id);
549 void OnUpdateDraggableRegions(
550 const std::vector<content::DraggableRegion>& regions);
548 551
549 #if defined(OS_MACOSX) || defined(OS_ANDROID) 552 #if defined(OS_MACOSX) || defined(OS_ANDROID)
550 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params); 553 void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params);
551 #endif 554 #endif
552 555
553 #if defined(OS_ANDROID) 556 #if defined(OS_ANDROID)
554 void OnStartContentIntent(const GURL& content_url); 557 void OnStartContentIntent(const GURL& content_url);
555 #endif 558 #endif
556 559
557 private: 560 private:
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 663 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
661 }; 664 };
662 665
663 #if defined(COMPILER_MSVC) 666 #if defined(COMPILER_MSVC)
664 #pragma warning(pop) 667 #pragma warning(pop)
665 #endif 668 #endif
666 669
667 } // namespace content 670 } // namespace content
668 671
669 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 672 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698