| OLD | NEW | 
|     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  |     7  | 
|     8 #include <deque> |     8 #include <deque> | 
|     9 #include <map> |     9 #include <map> | 
|    10 #include <set> |    10 #include <set> | 
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   456   virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |   456   virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 
|   457   virtual void didStartLoading(); |   457   virtual void didStartLoading(); | 
|   458   virtual void didStopLoading(); |   458   virtual void didStopLoading(); | 
|   459   virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |   459   virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 
|   460                                      double load_progress); |   460                                      double load_progress); | 
|   461   virtual void didCancelCompositionOnSelectionChange(); |   461   virtual void didCancelCompositionOnSelectionChange(); | 
|   462   virtual void didChangeSelection(bool is_selection_empty); |   462   virtual void didChangeSelection(bool is_selection_empty); | 
|   463   virtual void didExecuteCommand(const WebKit::WebString& command_name); |   463   virtual void didExecuteCommand(const WebKit::WebString& command_name); | 
|   464   virtual bool handleCurrentKeyboardEvent(); |   464   virtual bool handleCurrentKeyboardEvent(); | 
|   465   virtual WebKit::WebColorChooser* createColorChooser( |   465   virtual WebKit::WebColorChooser* createColorChooser( | 
|   466       WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |   466       WebKit::WebColorChooserClient*, | 
 |   467       const WebKit::WebColor& initial_color, | 
 |   468       const WebKit::WebVector<WebKit::WebColor>& suggestions, | 
 |   469       const WebKit::WebVector<WebKit::WebString>& suggestionLabels); | 
|   467   virtual bool runFileChooser( |   470   virtual bool runFileChooser( | 
|   468       const WebKit::WebFileChooserParams& params, |   471       const WebKit::WebFileChooserParams& params, | 
|   469       WebKit::WebFileChooserCompletion* chooser_completion); |   472       WebKit::WebFileChooserCompletion* chooser_completion); | 
|   470   virtual void runModalAlertDialog(WebKit::WebFrame* frame, |   473   virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 
|   471                                    const WebKit::WebString& message); |   474                                    const WebKit::WebString& message); | 
|   472   virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |   475   virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 
|   473                                      const WebKit::WebString& message); |   476                                      const WebKit::WebString& message); | 
|   474   virtual bool runModalPromptDialog(WebKit::WebFrame* frame, |   477   virtual bool runModalPromptDialog(WebKit::WebFrame* frame, | 
|   475                                     const WebKit::WebString& message, |   478                                     const WebKit::WebString& message, | 
|   476                                     const WebKit::WebString& default_value, |   479                                     const WebKit::WebString& default_value, | 
| (...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1579   // use the Observer interface to filter IPC messages and receive frame change |  1582   // use the Observer interface to filter IPC messages and receive frame change | 
|  1580   // notifications. |  1583   // notifications. | 
|  1581   // --------------------------------------------------------------------------- |  1584   // --------------------------------------------------------------------------- | 
|  1582  |  1585  | 
|  1583   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |  1586   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 
|  1584 }; |  1587 }; | 
|  1585  |  1588  | 
|  1586 }  // namespace content |  1589 }  // namespace content | 
|  1587  |  1590  | 
|  1588 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |  1591 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 
| OLD | NEW |