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

Side by Side Diff: Source/web/WebViewImpl.h

Issue 669013002: Remove BackForwardClient, cleanup starting a history navigation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 29 matching lines...) Expand all
40 #include "public/platform/WebGestureCurveTarget.h" 40 #include "public/platform/WebGestureCurveTarget.h"
41 #include "public/platform/WebLayer.h" 41 #include "public/platform/WebLayer.h"
42 #include "public/platform/WebPoint.h" 42 #include "public/platform/WebPoint.h"
43 #include "public/platform/WebRect.h" 43 #include "public/platform/WebRect.h"
44 #include "public/platform/WebSize.h" 44 #include "public/platform/WebSize.h"
45 #include "public/platform/WebString.h" 45 #include "public/platform/WebString.h"
46 #include "public/platform/WebVector.h" 46 #include "public/platform/WebVector.h"
47 #include "public/web/WebInputEvent.h" 47 #include "public/web/WebInputEvent.h"
48 #include "public/web/WebNavigationPolicy.h" 48 #include "public/web/WebNavigationPolicy.h"
49 #include "public/web/WebView.h" 49 #include "public/web/WebView.h"
50 #include "web/BackForwardClientImpl.h"
51 #include "web/ChromeClientImpl.h" 50 #include "web/ChromeClientImpl.h"
52 #include "web/ContextMenuClientImpl.h" 51 #include "web/ContextMenuClientImpl.h"
53 #include "web/DragClientImpl.h" 52 #include "web/DragClientImpl.h"
54 #include "web/EditorClientImpl.h" 53 #include "web/EditorClientImpl.h"
55 #include "web/InspectorClientImpl.h" 54 #include "web/InspectorClientImpl.h"
56 #include "web/MediaKeysClientImpl.h" 55 #include "web/MediaKeysClientImpl.h"
57 #include "web/PageOverlayList.h" 56 #include "web/PageOverlayList.h"
58 #include "web/PageScaleConstraintsSet.h" 57 #include "web/PageScaleConstraintsSet.h"
59 #include "web/PageWidgetDelegate.h" 58 #include "web/PageWidgetDelegate.h"
60 #include "web/SpellCheckerClientImpl.h" 59 #include "web/SpellCheckerClientImpl.h"
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 604
606 WebViewClient* m_client; // Can be 0 (e.g. unittests, shared workers, etc.) 605 WebViewClient* m_client; // Can be 0 (e.g. unittests, shared workers, etc.)
607 WebAutofillClient* m_autofillClient; 606 WebAutofillClient* m_autofillClient;
608 WebSpellCheckClient* m_spellCheckClient; 607 WebSpellCheckClient* m_spellCheckClient;
609 608
610 ChromeClientImpl m_chromeClientImpl; 609 ChromeClientImpl m_chromeClientImpl;
611 ContextMenuClientImpl m_contextMenuClientImpl; 610 ContextMenuClientImpl m_contextMenuClientImpl;
612 DragClientImpl m_dragClientImpl; 611 DragClientImpl m_dragClientImpl;
613 EditorClientImpl m_editorClientImpl; 612 EditorClientImpl m_editorClientImpl;
614 InspectorClientImpl m_inspectorClientImpl; 613 InspectorClientImpl m_inspectorClientImpl;
615 BackForwardClientImpl m_backForwardClientImpl;
616 SpellCheckerClientImpl m_spellCheckerClientImpl; 614 SpellCheckerClientImpl m_spellCheckerClientImpl;
617 StorageClientImpl m_storageClientImpl; 615 StorageClientImpl m_storageClientImpl;
618 616
619 WebSize m_size; 617 WebSize m_size;
620 // If true, automatically resize the render view around its content. 618 // If true, automatically resize the render view around its content.
621 bool m_shouldAutoResize; 619 bool m_shouldAutoResize;
622 // The lower bound on the size when auto-resizing. 620 // The lower bound on the size when auto-resizing.
623 IntSize m_minAutoSize; 621 IntSize m_minAutoSize;
624 // The upper bound on the size when auto-resizing. 622 // The upper bound on the size when auto-resizing.
625 IntSize m_maxAutoSize; 623 IntSize m_maxAutoSize;
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 float m_topControlsLayoutHeight; 752 float m_topControlsLayoutHeight;
755 }; 753 };
756 754
757 // We have no ways to check if the specified WebView is an instance of 755 // We have no ways to check if the specified WebView is an instance of
758 // WebViewImpl because WebViewImpl is the only implementation of WebView. 756 // WebViewImpl because WebViewImpl is the only implementation of WebView.
759 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 757 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
760 758
761 } // namespace blink 759 } // namespace blink
762 760
763 #endif 761 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698