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

Side by Side Diff: sky/engine/core/page/Page.h

Issue 695803003: Make clicks on <a> request a navigation (Closed) Base URL: git@github.com:domokit/mojo.git@master
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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 WTF_MAKE_NONCOPYABLE(PageClients); WTF_MAKE_FAST_ALLOCATED; 77 WTF_MAKE_NONCOPYABLE(PageClients); WTF_MAKE_FAST_ALLOCATED;
78 public: 78 public:
79 PageClients(); 79 PageClients();
80 ~PageClients(); 80 ~PageClients();
81 81
82 ChromeClient* chromeClient; 82 ChromeClient* chromeClient;
83 EditorClient* editorClient; 83 EditorClient* editorClient;
84 SpellCheckerClient* spellCheckerClient; 84 SpellCheckerClient* spellCheckerClient;
85 }; 85 };
86 86
87 Page(PageClients&, ServiceProvider*); 87 Page(PageClients&, ServiceProvider&);
88 virtual ~Page(); 88 virtual ~Page();
89 89
90 void makeOrdinary(); 90 void makeOrdinary();
91 91
92 // This method returns all pages, incl. private ones associated with 92 // This method returns all pages, incl. private ones associated with
93 // inspector overlay, popups, SVGImage, etc. 93 // inspector overlay, popups, SVGImage, etc.
94 static HashSet<Page*>& allPages(); 94 static HashSet<Page*>& allPages();
95 // This method returns all ordinary pages. 95 // This method returns all ordinary pages.
96 static HashSet<Page*>& ordinaryPages(); 96 static HashSet<Page*>& ordinaryPages();
97 97
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve rs; 223 HashSet<RawPtr<MultisamplingChangedObserver> > m_multisamplingChangedObserve rs;
224 224
225 // A pointer to all the interfaces provided to in-process Frames for this Pa ge. 225 // A pointer to all the interfaces provided to in-process Frames for this Pa ge.
226 // FIXME: Most of the members of Page should move onto FrameHost. 226 // FIXME: Most of the members of Page should move onto FrameHost.
227 OwnPtr<FrameHost> m_frameHost; 227 OwnPtr<FrameHost> m_frameHost;
228 }; 228 };
229 229
230 } // namespace blink 230 } // namespace blink
231 231
232 #endif // Page_h 232 #endif // Page_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698