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

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

Issue 1080693002: Implementation of Smart GO NEXT feature in Android Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed indentation and naming convention issues. Created 5 years, 8 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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 void Undo() override; 285 void Undo() override;
286 void Redo() override; 286 void Redo() override;
287 void Cut() override; 287 void Cut() override;
288 void Copy() override; 288 void Copy() override;
289 void CopyToFindPboard() override; 289 void CopyToFindPboard() override;
290 void Paste() override; 290 void Paste() override;
291 void PasteAndMatchStyle() override; 291 void PasteAndMatchStyle() override;
292 void Delete() override; 292 void Delete() override;
293 void SelectAll() override; 293 void SelectAll() override;
294 void Unselect() override; 294 void Unselect() override;
295 // Called to advance the focus to next form control element in
296 // forward/backward direction from current element.
297 void AdvanceFocusToNextFormControl(bool forward) override;
Avi (use Gerrit) 2015/04/17 16:46:27 Drop the comment here; having it in the inherited
AKV 2015/04/17 16:50:03 Done.
295 void Replace(const base::string16& word) override; 298 void Replace(const base::string16& word) override;
296 void ReplaceMisspelling(const base::string16& word) override; 299 void ReplaceMisspelling(const base::string16& word) override;
297 void NotifyContextMenuClosed( 300 void NotifyContextMenuClosed(
298 const CustomContextMenuContext& context) override; 301 const CustomContextMenuContext& context) override;
299 void ExecuteCustomContextMenuCommand( 302 void ExecuteCustomContextMenuCommand(
300 int action, 303 int action,
301 const CustomContextMenuContext& context) override; 304 const CustomContextMenuContext& context) override;
302 gfx::NativeView GetNativeView() override; 305 gfx::NativeView GetNativeView() override;
303 gfx::NativeView GetContentNativeView() override; 306 gfx::NativeView GetContentNativeView() override;
304 gfx::NativeWindow GetTopLevelNativeWindow() override; 307 gfx::NativeWindow GetTopLevelNativeWindow() override;
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 // Adds/removes a callback called on creation of each new WebContents. 1291 // Adds/removes a callback called on creation of each new WebContents.
1289 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1292 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1290 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1293 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1291 1294
1292 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1295 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1293 }; 1296 };
1294 1297
1295 } // namespace content 1298 } // namespace content
1296 1299
1297 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1300 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698