| OLD | NEW | 
|---|
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 
| 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 
| 7 | 7 | 
| 8 #include <string> | 8 #include <string> | 
| 9 #include <vector> | 9 #include <vector> | 
| 10 | 10 | 
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" | 
| 12 #include "base/string16.h" | 12 #include "base/string16.h" | 
| 13 #include "chrome/common/view_types.h" | 13 #include "chrome/common/view_types.h" | 
| 14 #include "net/base/load_states.h" | 14 #include "net/base/load_states.h" | 
| 15 #include "webkit/api/public/WebDragOperation.h" | 15 #include "third_party/WebKit/WebKit/chromium/public/WebDragOperation.h" | 
| 16 #include "webkit/glue/window_open_disposition.h" | 16 #include "webkit/glue/window_open_disposition.h" | 
| 17 | 17 | 
| 18 struct ContextMenuParams; | 18 struct ContextMenuParams; | 
| 19 class FilePath; | 19 class FilePath; | 
| 20 class GURL; | 20 class GURL; | 
| 21 class Value; | 21 class Value; | 
| 22 struct NativeWebKeyboardEvent; | 22 struct NativeWebKeyboardEvent; | 
| 23 class NavigationEntry; | 23 class NavigationEntry; | 
| 24 class Profile; | 24 class Profile; | 
| 25 struct RendererPreferences; | 25 struct RendererPreferences; | 
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 564   virtual bool IsExternalTabContainer() const; | 564   virtual bool IsExternalTabContainer() const; | 
| 565 | 565 | 
| 566   // The RenderView has inserted one css file into page. | 566   // The RenderView has inserted one css file into page. | 
| 567   virtual void DidInsertCSS() {} | 567   virtual void DidInsertCSS() {} | 
| 568 | 568 | 
| 569   // A different node in the page got focused. | 569   // A different node in the page got focused. | 
| 570   virtual void FocusedNodeChanged() {} | 570   virtual void FocusedNodeChanged() {} | 
| 571 }; | 571 }; | 
| 572 | 572 | 
| 573 #endif  // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 573 #endif  // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 
| OLD | NEW | 
|---|