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

Side by Side Diff: content/public/browser/web_contents_delegate.h

Issue 10963018: Rework arguments of HistoryService::AddPage() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows compile Created 8 years, 3 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 | « chrome/tools/profiles/generate_profile.cc ('k') | no next file » | 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) 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_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 struct SSLStatus; 43 struct SSLStatus;
44 } 44 }
45 45
46 namespace gfx { 46 namespace gfx {
47 class Point; 47 class Point;
48 class Rect; 48 class Rect;
49 class Size; 49 class Size;
50 } 50 }
51 51
52 namespace history { 52 namespace history {
53 class HistoryAddPageArgs; 53 struct HistoryAddPageArgs;
54 } 54 }
55 55
56 namespace webkit_glue { 56 namespace webkit_glue {
57 struct WebIntentData; 57 struct WebIntentData;
58 struct WebIntentServiceData; 58 struct WebIntentServiceData;
59 } 59 }
60 60
61 namespace WebKit { 61 namespace WebKit {
62 class WebLayer; 62 class WebLayer;
63 } 63 }
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 // Called when |this| is no longer the WebContentsDelegate for |source|. 466 // Called when |this| is no longer the WebContentsDelegate for |source|.
467 void Detach(WebContents* source); 467 void Detach(WebContents* source);
468 468
469 // The WebContents that this is currently a delegate for. 469 // The WebContents that this is currently a delegate for.
470 std::set<WebContents*> attached_contents_; 470 std::set<WebContents*> attached_contents_;
471 }; 471 };
472 472
473 } // namespace content 473 } // namespace content
474 474
475 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_ 475 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/tools/profiles/generate_profile.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698