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

Side by Side Diff: chrome/browser/external_tab_container_win.h

Issue 9706012: Add abstractions that let embedders drive tests of WebContents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove CONTENT_EXPORT on statically linked functions. Merge to head for commit. Created 8 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 | 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 CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 5 #ifndef CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 384
385 virtual content::WebContents* OpenURLFromTab( 385 virtual content::WebContents* OpenURLFromTab(
386 content::WebContents* source, 386 content::WebContents* source,
387 const content::OpenURLParams& params) OVERRIDE; 387 const content::OpenURLParams& params) OVERRIDE;
388 388
389 virtual void NavigationStateChanged(const content::WebContents* source, 389 virtual void NavigationStateChanged(const content::WebContents* source,
390 unsigned changed_flags) { 390 unsigned changed_flags) {
391 NOTREACHED(); 391 NOTREACHED();
392 } 392 }
393 393
394 virtual void CloseContents(TabContents* source) { 394 virtual void CloseContents(content::WebContents* source) {
395 NOTREACHED(); 395 NOTREACHED();
396 } 396 }
397 397
398 virtual void UpdateTargetURL(content::WebContents* source, int32 page_id, 398 virtual void UpdateTargetURL(content::WebContents* source, int32 page_id,
399 const GURL& url) { 399 const GURL& url) {
400 NOTREACHED(); 400 NOTREACHED();
401 } 401 }
402 402
403 void ForwardMessageToExternalHost(const std::string& message, 403 void ForwardMessageToExternalHost(const std::string& message,
404 const std::string& origin, 404 const std::string& origin,
(...skipping 11 matching lines...) Expand all
416 return false; 416 return false;
417 } 417 }
418 418
419 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, 419 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed,
420 bool* proceed_to_fire_unload) { 420 bool* proceed_to_fire_unload) {
421 NOTREACHED(); 421 NOTREACHED();
422 } 422 }
423 }; 423 };
424 424
425 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 425 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_webnavigation_unittest.cc ('k') | chrome/browser/favicon/favicon_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698