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

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

Issue 9386001: Implement a module system for the extension bindings JS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 const WebKit::WebURLResponse&); 515 const WebKit::WebURLResponse&);
516 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); 516 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame);
517 virtual void didRunInsecureContent( 517 virtual void didRunInsecureContent(
518 WebKit::WebFrame* frame, 518 WebKit::WebFrame* frame,
519 const WebKit::WebSecurityOrigin& origin, 519 const WebKit::WebSecurityOrigin& origin,
520 const WebKit::WebURL& target); 520 const WebKit::WebURL& target);
521 virtual void didAdoptURLLoader(WebKit::WebURLLoader* loader); 521 virtual void didAdoptURLLoader(WebKit::WebURLLoader* loader);
522 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); 522 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame);
523 virtual void didCreateScriptContext(WebKit::WebFrame* frame, 523 virtual void didCreateScriptContext(WebKit::WebFrame* frame,
524 v8::Handle<v8::Context>, 524 v8::Handle<v8::Context>,
525 int extension_group,
525 int world_id); 526 int world_id);
526 virtual void willReleaseScriptContext(WebKit::WebFrame* frame, 527 virtual void willReleaseScriptContext(WebKit::WebFrame* frame,
527 v8::Handle<v8::Context>, 528 v8::Handle<v8::Context>,
528 int world_id); 529 int world_id);
529 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); 530 virtual void didChangeScrollOffset(WebKit::WebFrame* frame);
530 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); 531 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers);
531 virtual void didChangeContentsSize(WebKit::WebFrame* frame, 532 virtual void didChangeContentsSize(WebKit::WebFrame* frame,
532 const WebKit::WebSize& size); 533 const WebKit::WebSize& size);
533 virtual void reportFindInPageMatchCount(int request_id, 534 virtual void reportFindInPageMatchCount(int request_id,
534 int count, 535 int count,
(...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 // bunch of stuff, you should probably create a helper class and put your 1266 // bunch of stuff, you should probably create a helper class and put your
1266 // data and methods on that to avoid bloating RenderView more. You can 1267 // data and methods on that to avoid bloating RenderView more. You can
1267 // use the Observer interface to filter IPC messages and receive frame change 1268 // use the Observer interface to filter IPC messages and receive frame change
1268 // notifications. 1269 // notifications.
1269 // --------------------------------------------------------------------------- 1270 // ---------------------------------------------------------------------------
1270 1271
1271 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1272 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1272 }; 1273 };
1273 1274
1274 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1275 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698