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

Side by Side Diff: chrome/renderer/render_view.h

Issue 6410115: Adds navigator.registerProtocolHandler. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_RENDERER_RENDER_VIEW_H_ 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_
6 #define CHROME_RENDERER_RENDER_VIEW_H_ 6 #define CHROME_RENDERER_RENDER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 const WebKit::WebAccessibilityObject& obj, 473 const WebKit::WebAccessibilityObject& obj,
474 WebKit::WebAccessibilityNotification notification); 474 WebKit::WebAccessibilityNotification notification);
475 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, 475 virtual void didUpdateInspectorSetting(const WebKit::WebString& key,
476 const WebKit::WebString& value); 476 const WebKit::WebString& value);
477 virtual WebKit::WebGeolocationClient* geolocationClient(); 477 virtual WebKit::WebGeolocationClient* geolocationClient();
478 virtual WebKit::WebSpeechInputController* speechInputController( 478 virtual WebKit::WebSpeechInputController* speechInputController(
479 WebKit::WebSpeechInputListener* listener); 479 WebKit::WebSpeechInputListener* listener);
480 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); 480 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient();
481 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); 481 virtual void zoomLimitsChanged(double minimum_level, double maximum_level);
482 virtual void zoomLevelChanged(); 482 virtual void zoomLevelChanged();
483 virtual void registerProtocolHandler(const WebKit::WebString& scheme,
484 const WebKit::WebString& baseUrl,
485 const WebKit::WebString& url,
486 const WebKit::WebString& title);
483 487
484 // WebKit::WebFrameClient implementation ------------------------------------- 488 // WebKit::WebFrameClient implementation -------------------------------------
485 489
486 virtual WebKit::WebPlugin* createPlugin( 490 virtual WebKit::WebPlugin* createPlugin(
487 WebKit::WebFrame* frame, 491 WebKit::WebFrame* frame,
488 const WebKit::WebPluginParams& params); 492 const WebKit::WebPluginParams& params);
489 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, 493 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame,
490 WebKit::WebWorkerClient* client); 494 WebKit::WebWorkerClient* client);
491 virtual WebKit::WebSharedWorker* createSharedWorker( 495 virtual WebKit::WebSharedWorker* createSharedWorker(
492 WebKit::WebFrame* frame, const WebKit::WebURL& url, 496 WebKit::WebFrame* frame, const WebKit::WebURL& url,
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after
1476 // bunch of stuff, you should probably create a helper class and put your 1480 // bunch of stuff, you should probably create a helper class and put your
1477 // data and methods on that to avoid bloating RenderView more. You can use 1481 // data and methods on that to avoid bloating RenderView more. You can use
1478 // the Observer interface to filter IPC messages and receive frame change 1482 // the Observer interface to filter IPC messages and receive frame change
1479 // notifications. 1483 // notifications.
1480 // --------------------------------------------------------------------------- 1484 // ---------------------------------------------------------------------------
1481 1485
1482 DISALLOW_COPY_AND_ASSIGN(RenderView); 1486 DISALLOW_COPY_AND_ASSIGN(RenderView);
1483 }; 1487 };
1484 1488
1485 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 1489 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698