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

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

Issue 9517010: Change panels to be able to turn off autoresize. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Redisable test. Created 8 years, 9 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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 void OnDragTargetDragEnter(const WebDropData& drop_data, 813 void OnDragTargetDragEnter(const WebDropData& drop_data,
814 const gfx::Point& client_pt, 814 const gfx::Point& client_pt,
815 const gfx::Point& screen_pt, 815 const gfx::Point& screen_pt,
816 WebKit::WebDragOperationsMask operations_allowed); 816 WebKit::WebDragOperationsMask operations_allowed);
817 void OnDragTargetDragLeave(); 817 void OnDragTargetDragLeave();
818 void OnDragTargetDragOver(const gfx::Point& client_pt, 818 void OnDragTargetDragOver(const gfx::Point& client_pt,
819 const gfx::Point& screen_pt, 819 const gfx::Point& screen_pt,
820 WebKit::WebDragOperationsMask operations_allowed); 820 WebKit::WebDragOperationsMask operations_allowed);
821 void OnEnablePreferredSizeChangedMode(); 821 void OnEnablePreferredSizeChangedMode();
822 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size); 822 void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size);
823 void OnDisableAutoResize(const gfx::Size& new_size);
823 void OnEnumerateDirectoryResponse(int id, const std::vector<FilePath>& paths); 824 void OnEnumerateDirectoryResponse(int id, const std::vector<FilePath>& paths);
824 void OnExecuteEditCommand(const std::string& name, const std::string& value); 825 void OnExecuteEditCommand(const std::string& name, const std::string& value);
825 void OnFileChooserResponse(const std::vector<FilePath>& paths); 826 void OnFileChooserResponse(const std::vector<FilePath>& paths);
826 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&); 827 void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&);
827 void OnFindReplyAck(); 828 void OnFindReplyAck();
828 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); 829 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url);
829 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks( 830 void OnGetSerializedHtmlDataForCurrentPageWithLocalLinks(
830 const std::vector<GURL>& links, 831 const std::vector<GURL>& links,
831 const std::vector<FilePath>& local_paths, 832 const std::vector<FilePath>& local_paths,
832 const FilePath& local_directory_name); 833 const FilePath& local_directory_name);
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 // bunch of stuff, you should probably create a helper class and put your 1289 // bunch of stuff, you should probably create a helper class and put your
1289 // data and methods on that to avoid bloating RenderView more. You can 1290 // data and methods on that to avoid bloating RenderView more. You can
1290 // use the Observer interface to filter IPC messages and receive frame change 1291 // use the Observer interface to filter IPC messages and receive frame change
1291 // notifications. 1292 // notifications.
1292 // --------------------------------------------------------------------------- 1293 // ---------------------------------------------------------------------------
1293 1294
1294 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1295 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1295 }; 1296 };
1296 1297
1297 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1298 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698