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

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

Issue 137893025: Removed unnecessary parameter from didActivateCompositor() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing OVERRIDE from method didActivateCompositor Created 6 years, 11 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 // 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 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 // Most methods are handled by RenderWidget. 374 // Most methods are handled by RenderWidget.
375 virtual void didFocus(); 375 virtual void didFocus();
376 virtual void didBlur(); 376 virtual void didBlur();
377 virtual void show(blink::WebNavigationPolicy policy); 377 virtual void show(blink::WebNavigationPolicy policy);
378 virtual void runModal(); 378 virtual void runModal();
379 virtual bool enterFullScreen(); 379 virtual bool enterFullScreen();
380 virtual void exitFullScreen(); 380 virtual void exitFullScreen();
381 virtual bool requestPointerLock(); 381 virtual bool requestPointerLock();
382 virtual void requestPointerUnlock(); 382 virtual void requestPointerUnlock();
383 virtual bool isPointerLocked(); 383 virtual bool isPointerLocked();
384 virtual void didActivateCompositor(int input_handler_identifier); 384 virtual void didActivateCompositor();
385 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, 385 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event,
386 bool event_cancelled) OVERRIDE; 386 bool event_cancelled) OVERRIDE;
387 virtual void initializeLayerTreeView() OVERRIDE; 387 virtual void initializeLayerTreeView() OVERRIDE;
388 388
389 // blink::WebViewClient implementation -------------------------------------- 389 // blink::WebViewClient implementation --------------------------------------
390 390
391 virtual blink::WebView* createView( 391 virtual blink::WebView* createView(
392 blink::WebFrame* creator, 392 blink::WebFrame* creator,
393 const blink::WebURLRequest& request, 393 const blink::WebURLRequest& request,
394 const blink::WebWindowFeatures& features, 394 const blink::WebWindowFeatures& features,
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after
1530 // use the Observer interface to filter IPC messages and receive frame change 1530 // use the Observer interface to filter IPC messages and receive frame change
1531 // notifications. 1531 // notifications.
1532 // --------------------------------------------------------------------------- 1532 // ---------------------------------------------------------------------------
1533 1533
1534 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1534 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1535 }; 1535 };
1536 1536
1537 } // namespace content 1537 } // namespace content
1538 1538
1539 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1539 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« AUTHORS ('K') | « AUTHORS ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698