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

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

Issue 7461093: Web Intents: Preparatory work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pkasting fix 3. Created 9 years, 4 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
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 CONTENT_RENDERER_RENDER_VIEW_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ 6 #define CONTENT_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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 virtual WebKit::WebGeolocationClient* geolocationClient(); 423 virtual WebKit::WebGeolocationClient* geolocationClient();
424 virtual WebKit::WebSpeechInputController* speechInputController( 424 virtual WebKit::WebSpeechInputController* speechInputController(
425 WebKit::WebSpeechInputListener* listener); 425 WebKit::WebSpeechInputListener* listener);
426 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); 426 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient();
427 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); 427 virtual void zoomLimitsChanged(double minimum_level, double maximum_level);
428 virtual void zoomLevelChanged(); 428 virtual void zoomLevelChanged();
429 virtual void registerProtocolHandler(const WebKit::WebString& scheme, 429 virtual void registerProtocolHandler(const WebKit::WebString& scheme,
430 const WebKit::WebString& base_url, 430 const WebKit::WebString& base_url,
431 const WebKit::WebString& url, 431 const WebKit::WebString& url,
432 const WebKit::WebString& title); 432 const WebKit::WebString& title);
433 virtual void registerIntentHandler(const WebKit::WebString& action,
434 const WebKit::WebString& type,
435 const WebKit::WebString& href,
436 const WebKit::WebString& title);
433 virtual WebKit::WebPageVisibilityState visibilityState() const; 437 virtual WebKit::WebPageVisibilityState visibilityState() const;
434 438
435 // WebKit::WebFrameClient implementation ------------------------------------- 439 // WebKit::WebFrameClient implementation -------------------------------------
436 440
437 virtual WebKit::WebPlugin* createPlugin( 441 virtual WebKit::WebPlugin* createPlugin(
438 WebKit::WebFrame* frame, 442 WebKit::WebFrame* frame,
439 const WebKit::WebPluginParams& params); 443 const WebKit::WebPluginParams& params);
440 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, 444 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame,
441 WebKit::WebWorkerClient* client); 445 WebKit::WebWorkerClient* client);
442 virtual WebKit::WebSharedWorker* createSharedWorker( 446 virtual WebKit::WebSharedWorker* createSharedWorker(
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
1187 // bunch of stuff, you should probably create a helper class and put your 1191 // bunch of stuff, you should probably create a helper class and put your
1188 // data and methods on that to avoid bloating RenderView more. You can use 1192 // data and methods on that to avoid bloating RenderView more. You can use
1189 // the Observer interface to filter IPC messages and receive frame change 1193 // the Observer interface to filter IPC messages and receive frame change
1190 // notifications. 1194 // notifications.
1191 // --------------------------------------------------------------------------- 1195 // ---------------------------------------------------------------------------
1192 1196
1193 DISALLOW_COPY_AND_ASSIGN(RenderView); 1197 DISALLOW_COPY_AND_ASSIGN(RenderView);
1194 }; 1198 };
1195 1199
1196 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1200 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698