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

Side by Side Diff: Source/WebKit2/WebProcess/WebPage/WebPage.h

Issue 6532004: DO NOT SUBMIT (Closed) Base URL: git://git.webkit.org/WebKit.git@master
Patch Set: Address feedback Created 9 years, 9 months 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) 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2010, 2011 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 void didCommitProvisionalLoad(WebFrame*); 284 void didCommitProvisionalLoad(WebFrame*);
285 void didFailProvisionalLoad(WebFrame*); 285 void didFailProvisionalLoad(WebFrame*);
286 private: 286 private:
287 RefPtr<SandboxExtension> m_pendingProvisionalSandboxExtension; 287 RefPtr<SandboxExtension> m_pendingProvisionalSandboxExtension;
288 RefPtr<SandboxExtension> m_provisionalSandboxExtension; 288 RefPtr<SandboxExtension> m_provisionalSandboxExtension;
289 RefPtr<SandboxExtension> m_committedSandboxExtension; 289 RefPtr<SandboxExtension> m_committedSandboxExtension;
290 }; 290 };
291 291
292 SandboxExtensionTracker& sandboxExtensionTracker() { return m_sandboxExtensi onTracker; } 292 SandboxExtensionTracker& sandboxExtensionTracker() { return m_sandboxExtensi onTracker; }
293 293
294 static void getLocationAndLengthFromRange(WebCore::Range*, uint64_t& locatio n, uint64_t& length);
295
296 #if PLATFORM(MAC) 294 #if PLATFORM(MAC)
297 void registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elem enToken, const CoreIPC::DataReference& windowToken); 295 void registerUIProcessAccessibilityTokens(const CoreIPC::DataReference& elem enToken, const CoreIPC::DataReference& windowToken);
298 AccessibilityWebPageObject* accessibilityRemoteObject(); 296 AccessibilityWebPageObject* accessibilityRemoteObject();
299 WebCore::IntPoint accessibilityPosition() const { return m_accessibilityPosi tion; } 297 WebCore::IntPoint accessibilityPosition() const { return m_accessibilityPosi tion; }
300 298
301 void sendComplexTextInputToPlugin(uint64_t pluginComplexTextInputIdentifier, const String& textInput); 299 void sendComplexTextInputToPlugin(uint64_t pluginComplexTextInputIdentifier, const String& textInput);
302 300
303 void getMarkedRange(uint64_t& location, uint64_t& length); 301 void getMarkedRange(uint64_t& location, uint64_t& length);
304 void characterIndexForPoint(const WebCore::IntPoint point, uint64_t& result) ; 302 void characterIndexForPoint(const WebCore::IntPoint point, uint64_t& result) ;
305 void firstRectForCharacterRange(uint64_t location, uint64_t length, WebCore: :IntRect& resultRect); 303 void firstRectForCharacterRange(uint64_t location, uint64_t length, WebCore: :IntRect& resultRect);
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 bool m_canRunModal; 572 bool m_canRunModal;
575 bool m_isRunningModal; 573 bool m_isRunningModal;
576 574
577 bool m_cachedMainFrameIsPinnedToLeftSide; 575 bool m_cachedMainFrameIsPinnedToLeftSide;
578 bool m_cachedMainFrameIsPinnedToRightSide; 576 bool m_cachedMainFrameIsPinnedToRightSide;
579 }; 577 };
580 578
581 } // namespace WebKit 579 } // namespace WebKit
582 580
583 #endif // WebPage_h 581 #endif // WebPage_h
OLDNEW
« no previous file with comments | « Source/WebKit2/WebProcess/WebCoreSupport/WebEditorClient.cpp ('k') | Source/WebKit2/WebProcess/WebPage/WebPage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698