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

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

Issue 1143183002: Proof of concept implementation of context based history filtering. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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_PUBLIC_BROWSER_WEB_CONTENTS_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_
6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 virtual WebContents* Clone() = 0; 377 virtual WebContents* Clone() = 0;
378 378
379 // Reloads the focused frame. 379 // Reloads the focused frame.
380 virtual void ReloadFocusedFrame(bool ignore_cache) = 0; 380 virtual void ReloadFocusedFrame(bool ignore_cache) = 0;
381 381
382 // Editing commands ---------------------------------------------------------- 382 // Editing commands ----------------------------------------------------------
383 383
384 virtual void Undo() = 0; 384 virtual void Undo() = 0;
385 virtual void Redo() = 0; 385 virtual void Redo() = 0;
386 virtual void Cut() = 0; 386 virtual void Cut() = 0;
387 virtual void Print() = 0;
388 virtual void SaveImage() = 0;
387 virtual void Copy() = 0; 389 virtual void Copy() = 0;
388 virtual void CopyToFindPboard() = 0; 390 virtual void CopyToFindPboard() = 0;
389 virtual void Paste() = 0; 391 virtual void Paste() = 0;
390 virtual void PasteAndMatchStyle() = 0; 392 virtual void PasteAndMatchStyle() = 0;
391 virtual void Delete() = 0; 393 virtual void Delete() = 0;
392 virtual void SelectAll() = 0; 394 virtual void SelectAll() = 0;
393 virtual void Unselect() = 0; 395 virtual void Unselect() = 0;
394 396
395 // Replaces the currently selected word or a word around the cursor. 397 // Replaces the currently selected word or a word around the cursor.
396 virtual void Replace(const base::string16& word) = 0; 398 virtual void Replace(const base::string16& word) = 0;
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 645
644 private: 646 private:
645 // This interface should only be implemented inside content. 647 // This interface should only be implemented inside content.
646 friend class WebContentsImpl; 648 friend class WebContentsImpl;
647 WebContents() {} 649 WebContents() {}
648 }; 650 };
649 651
650 } // namespace content 652 } // namespace content
651 653
652 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ 654 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698