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_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <map> | 10 #include <map> |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 virtual void reportFindInPageMatchCount(int request_id, | 582 virtual void reportFindInPageMatchCount(int request_id, |
583 int count, | 583 int count, |
584 bool final_update); | 584 bool final_update); |
585 virtual void reportFindInPageSelection(int request_id, | 585 virtual void reportFindInPageSelection(int request_id, |
586 int active_match_ordinal, | 586 int active_match_ordinal, |
587 const WebKit::WebRect& sel); | 587 const WebKit::WebRect& sel); |
588 | 588 |
589 virtual void openFileSystem(WebKit::WebFrame* frame, | 589 virtual void openFileSystem(WebKit::WebFrame* frame, |
590 WebKit::WebFileSystem::Type type, | 590 WebKit::WebFileSystem::Type type, |
591 long long size, | 591 long long size, |
| 592 bool create, |
592 WebKit::WebFileSystemCallbacks* callbacks); | 593 WebKit::WebFileSystemCallbacks* callbacks); |
593 | 594 |
594 // WebKit::WebPageSerializerClient implementation ---------------------------- | 595 // WebKit::WebPageSerializerClient implementation ---------------------------- |
595 | 596 |
596 virtual void didSerializeDataForFrame(const WebKit::WebURL& frame_url, | 597 virtual void didSerializeDataForFrame(const WebKit::WebURL& frame_url, |
597 const WebKit::WebCString& data, | 598 const WebKit::WebCString& data, |
598 PageSerializationStatus status); | 599 PageSerializationStatus status); |
599 | 600 |
600 // webkit_glue::WebPluginPageDelegate implementation ------------------------- | 601 // webkit_glue::WebPluginPageDelegate implementation ------------------------- |
601 | 602 |
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1399 // ADDING NEW DATA? Please see if it fits appropriately in one of the above | 1400 // ADDING NEW DATA? Please see if it fits appropriately in one of the above |
1400 // sections rather than throwing it randomly at the end. If you're adding a | 1401 // sections rather than throwing it randomly at the end. If you're adding a |
1401 // bunch of stuff, you should probably create a helper class and put your | 1402 // bunch of stuff, you should probably create a helper class and put your |
1402 // data and methods on that to avoid bloating RenderView more. | 1403 // data and methods on that to avoid bloating RenderView more. |
1403 // --------------------------------------------------------------------------- | 1404 // --------------------------------------------------------------------------- |
1404 | 1405 |
1405 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1406 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1406 }; | 1407 }; |
1407 | 1408 |
1408 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1409 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |